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
|
<?xml version="1.0" encoding="utf-8"?>
<grit latest_public_release="0" current_release="1"
source_lang_id="en" enc_check="möl">
<outputs>
<output filename="grit/privacy_sandbox_strings.h" type="rc_header">
<emit emit_type='prepend'></emit>
</output>
<output filename="privacy_sandbox_strings_af.pak" type="data_package" lang="af" />
<output filename="privacy_sandbox_strings_am.pak" type="data_package" lang="am" />
<output filename="privacy_sandbox_strings_ar.pak" type="data_package" lang="ar" />
<output filename="privacy_sandbox_strings_as.pak" type="data_package" lang="as" />
<output filename="privacy_sandbox_strings_az.pak" type="data_package" lang="az" />
<output filename="privacy_sandbox_strings_be.pak" type="data_package" lang="be" />
<output filename="privacy_sandbox_strings_bg.pak" type="data_package" lang="bg" />
<output filename="privacy_sandbox_strings_bn.pak" type="data_package" lang="bn" />
<output filename="privacy_sandbox_strings_bs.pak" type="data_package" lang="bs" />
<output filename="privacy_sandbox_strings_ca.pak" type="data_package" lang="ca" />
<output filename="privacy_sandbox_strings_cs.pak" type="data_package" lang="cs" />
<output filename="privacy_sandbox_strings_cy.pak" type="data_package" lang="cy" />
<output filename="privacy_sandbox_strings_da.pak" type="data_package" lang="da" />
<output filename="privacy_sandbox_strings_de.pak" type="data_package" lang="de" />
<output filename="privacy_sandbox_strings_el.pak" type="data_package" lang="el" />
<output filename="privacy_sandbox_strings_en-GB.pak" type="data_package" lang="en-GB" />
<output filename="privacy_sandbox_strings_en-US.pak" type="data_package" lang="en" />
<output filename="privacy_sandbox_strings_es.pak" type="data_package" lang="es" />
<if expr="is_ios">
<!-- iOS uses es-MX for es-419 -->
<output filename="privacy_sandbox_strings_es-MX.pak" type="data_package" lang="es-419" />
</if>
<if expr="not is_ios">
<output filename="privacy_sandbox_strings_es-419.pak" type="data_package" lang="es-419" />
</if>
<output filename="privacy_sandbox_strings_et.pak" type="data_package" lang="et" />
<output filename="privacy_sandbox_strings_eu.pak" type="data_package" lang="eu" />
<output filename="privacy_sandbox_strings_fa.pak" type="data_package" lang="fa" />
<output filename="privacy_sandbox_strings_fi.pak" type="data_package" lang="fi" />
<output filename="privacy_sandbox_strings_fil.pak" type="data_package" lang="fil" />
<output filename="privacy_sandbox_strings_fr-CA.pak" type="data_package" lang="fr-CA" />
<output filename="privacy_sandbox_strings_fr.pak" type="data_package" lang="fr" />
<output filename="privacy_sandbox_strings_gl.pak" type="data_package" lang="gl" />
<output filename="privacy_sandbox_strings_gu.pak" type="data_package" lang="gu" />
<output filename="privacy_sandbox_strings_he.pak" type="data_package" lang="he" />
<output filename="privacy_sandbox_strings_hi.pak" type="data_package" lang="hi" />
<output filename="privacy_sandbox_strings_hr.pak" type="data_package" lang="hr" />
<output filename="privacy_sandbox_strings_hu.pak" type="data_package" lang="hu" />
<output filename="privacy_sandbox_strings_hy.pak" type="data_package" lang="hy" />
<output filename="privacy_sandbox_strings_id.pak" type="data_package" lang="id" />
<output filename="privacy_sandbox_strings_is.pak" type="data_package" lang="is" />
<output filename="privacy_sandbox_strings_it.pak" type="data_package" lang="it" />
<output filename="privacy_sandbox_strings_ja.pak" type="data_package" lang="ja" />
<output filename="privacy_sandbox_strings_ka.pak" type="data_package" lang="ka" />
<output filename="privacy_sandbox_strings_kk.pak" type="data_package" lang="kk" />
<output filename="privacy_sandbox_strings_km.pak" type="data_package" lang="km" />
<output filename="privacy_sandbox_strings_kn.pak" type="data_package" lang="kn" />
<output filename="privacy_sandbox_strings_ko.pak" type="data_package" lang="ko" />
<output filename="privacy_sandbox_strings_ky.pak" type="data_package" lang="ky" />
<output filename="privacy_sandbox_strings_lo.pak" type="data_package" lang="lo" />
<output filename="privacy_sandbox_strings_lt.pak" type="data_package" lang="lt" />
<output filename="privacy_sandbox_strings_lv.pak" type="data_package" lang="lv" />
<output filename="privacy_sandbox_strings_mk.pak" type="data_package" lang="mk" />
<output filename="privacy_sandbox_strings_ml.pak" type="data_package" lang="ml" />
<output filename="privacy_sandbox_strings_mn.pak" type="data_package" lang="mn" />
<output filename="privacy_sandbox_strings_mr.pak" type="data_package" lang="mr" />
<output filename="privacy_sandbox_strings_ms.pak" type="data_package" lang="ms" />
<output filename="privacy_sandbox_strings_my.pak" type="data_package" lang="my" />
<output filename="privacy_sandbox_strings_ne.pak" type="data_package" lang="ne" />
<output filename="privacy_sandbox_strings_nl.pak" type="data_package" lang="nl" />
<!-- The translation console uses 'no' for Norwegian Bokmål. It should
be 'nb'. -->
<output filename="privacy_sandbox_strings_nb.pak" type="data_package" lang="no" />
<output filename="privacy_sandbox_strings_pa.pak" type="data_package" lang="pa" />
<output filename="privacy_sandbox_strings_pl.pak" type="data_package" lang="pl" />
<if expr="is_ios">
<!-- iOS uses pt for pt-BR -->
<output filename="privacy_sandbox_strings_pt.pak" type="data_package" lang="pt-BR" />
</if>
<if expr="not is_ios">
<output filename="privacy_sandbox_strings_pt-BR.pak" type="data_package" lang="pt-BR" />
</if>
<output filename="privacy_sandbox_strings_pt-PT.pak" type="data_package" lang="pt-PT" />
<output filename="privacy_sandbox_strings_or.pak" type="data_package" lang="or" />
<output filename="privacy_sandbox_strings_ro.pak" type="data_package" lang="ro" />
<output filename="privacy_sandbox_strings_ru.pak" type="data_package" lang="ru" />
<output filename="privacy_sandbox_strings_si.pak" type="data_package" lang="si" />
<output filename="privacy_sandbox_strings_sk.pak" type="data_package" lang="sk" />
<output filename="privacy_sandbox_strings_sl.pak" type="data_package" lang="sl" />
<output filename="privacy_sandbox_strings_sq.pak" type="data_package" lang="sq" />
<output filename="privacy_sandbox_strings_sr-Latn.pak" type="data_package" lang="sr-Latn" />
<output filename="privacy_sandbox_strings_sr.pak" type="data_package" lang="sr" />
<output filename="privacy_sandbox_strings_sv.pak" type="data_package" lang="sv" />
<output filename="privacy_sandbox_strings_sw.pak" type="data_package" lang="sw" />
<output filename="privacy_sandbox_strings_ta.pak" type="data_package" lang="ta" />
<output filename="privacy_sandbox_strings_te.pak" type="data_package" lang="te" />
<output filename="privacy_sandbox_strings_th.pak" type="data_package" lang="th" />
<output filename="privacy_sandbox_strings_tr.pak" type="data_package" lang="tr" />
<output filename="privacy_sandbox_strings_uk.pak" type="data_package" lang="uk" />
<output filename="privacy_sandbox_strings_ur.pak" type="data_package" lang="ur" />
<output filename="privacy_sandbox_strings_uz.pak" type="data_package" lang="uz" />
<output filename="privacy_sandbox_strings_vi.pak" type="data_package" lang="vi" />
<output filename="privacy_sandbox_strings_zh-CN.pak" type="data_package" lang="zh-CN" />
<output filename="privacy_sandbox_strings_zh-HK.pak" type="data_package" lang="zh-HK" />
<output filename="privacy_sandbox_strings_zh-TW.pak" type="data_package" lang="zh-TW" />
<output filename="privacy_sandbox_strings_zu.pak" type="data_package" lang="zu" />
<!-- Pseudolocales -->
<output filename="privacy_sandbox_strings_ar-XB.pak" type="data_package" lang="ar-XB" />
<output filename="privacy_sandbox_strings_en-XA.pak" type="data_package" lang="en-XA" />
<!-- On Android, output some strings into Android's xml string format.
These strings are tagged with formatter_data="android_java" -->
<if expr="is_android">
<output filename="java/res/values-af/privacy_sandbox_strings.xml" lang="af" type="android" context="android_java" />
<output filename="java/res/values-am/privacy_sandbox_strings.xml" lang="am" type="android" context="android_java" />
<output filename="java/res/values-ar/privacy_sandbox_strings.xml" lang="ar" type="android" context="android_java" />
<output filename="java/res/values-as/privacy_sandbox_strings.xml" lang="as" type="android" context="android_java" />
<output filename="java/res/values-az/privacy_sandbox_strings.xml" lang="az" type="android" context="android_java" />
<output filename="java/res/values-be/privacy_sandbox_strings.xml" lang="be" type="android" context="android_java" />
<output filename="java/res/values-bg/privacy_sandbox_strings.xml" lang="bg" type="android" context="android_java" />
<output filename="java/res/values-bn/privacy_sandbox_strings.xml" lang="bn" type="android" context="android_java" />
<output filename="java/res/values-bs/privacy_sandbox_strings.xml" lang="bs" type="android" context="android_java" />
<output filename="java/res/values-ca/privacy_sandbox_strings.xml" lang="ca" type="android" context="android_java" />
<output filename="java/res/values-cs/privacy_sandbox_strings.xml" lang="cs" type="android" context="android_java" />
<output filename="java/res/values-da/privacy_sandbox_strings.xml" lang="da" type="android" context="android_java" />
<output filename="java/res/values-de/privacy_sandbox_strings.xml" lang="de" type="android" context="android_java" />
<output filename="java/res/values-el/privacy_sandbox_strings.xml" lang="el" type="android" context="android_java" />
<output filename="java/res/values/privacy_sandbox_strings.xml" lang="en" type="android" context="android_java" />
<output filename="java/res/values-en-rGB/privacy_sandbox_strings.xml" lang="en-GB" type="android" context="android_java" />
<output filename="java/res/values-es/privacy_sandbox_strings.xml" lang="es" type="android" context="android_java" />
<output filename="java/res/values-es-rUS/privacy_sandbox_strings.xml" lang="es-419" type="android" context="android_java" />
<output filename="java/res/values-et/privacy_sandbox_strings.xml" lang="et" type="android" context="android_java" />
<output filename="java/res/values-eu/privacy_sandbox_strings.xml" lang="eu" type="android" context="android_java" />
<output filename="java/res/values-fa/privacy_sandbox_strings.xml" lang="fa" type="android" context="android_java" />
<output filename="java/res/values-fi/privacy_sandbox_strings.xml" lang="fi" type="android" context="android_java" />
<output filename="java/res/values-tl/privacy_sandbox_strings.xml" lang="fil" type="android" context="android_java" />
<output filename="java/res/values-fr/privacy_sandbox_strings.xml" lang="fr" type="android" context="android_java" />
<output filename="java/res/values-fr-rCA/privacy_sandbox_strings.xml" lang="fr-CA" type="android" context="android_java" />
<output filename="java/res/values-gl/privacy_sandbox_strings.xml" lang="gl" type="android" context="android_java" />
<output filename="java/res/values-gu/privacy_sandbox_strings.xml" lang="gu" type="android" context="android_java" />
<output filename="java/res/values-iw/privacy_sandbox_strings.xml" lang="he" type="android" context="android_java" />
<output filename="java/res/values-hi/privacy_sandbox_strings.xml" lang="hi" type="android" context="android_java" />
<output filename="java/res/values-hr/privacy_sandbox_strings.xml" lang="hr" type="android" context="android_java" />
<output filename="java/res/values-hu/privacy_sandbox_strings.xml" lang="hu" type="android" context="android_java" />
<output filename="java/res/values-hy/privacy_sandbox_strings.xml" lang="hy" type="android" context="android_java" />
<output filename="java/res/values-in/privacy_sandbox_strings.xml" lang="id" type="android" context="android_java" />
<output filename="java/res/values-is/privacy_sandbox_strings.xml" lang="is" type="android" context="android_java" />
<output filename="java/res/values-it/privacy_sandbox_strings.xml" lang="it" type="android" context="android_java" />
<output filename="java/res/values-ja/privacy_sandbox_strings.xml" lang="ja" type="android" context="android_java" />
<output filename="java/res/values-ka/privacy_sandbox_strings.xml" lang="ka" type="android" context="android_java" />
<output filename="java/res/values-kk/privacy_sandbox_strings.xml" lang="kk" type="android" context="android_java" />
<output filename="java/res/values-km/privacy_sandbox_strings.xml" lang="km" type="android" context="android_java" />
<output filename="java/res/values-kn/privacy_sandbox_strings.xml" lang="kn" type="android" context="android_java" />
<output filename="java/res/values-ko/privacy_sandbox_strings.xml" lang="ko" type="android" context="android_java" />
<output filename="java/res/values-ky/privacy_sandbox_strings.xml" lang="ky" type="android" context="android_java" />
<output filename="java/res/values-lo/privacy_sandbox_strings.xml" lang="lo" type="android" context="android_java" />
<output filename="java/res/values-lt/privacy_sandbox_strings.xml" lang="lt" type="android" context="android_java" />
<output filename="java/res/values-lv/privacy_sandbox_strings.xml" lang="lv" type="android" context="android_java" />
<output filename="java/res/values-mk/privacy_sandbox_strings.xml" lang="mk" type="android" context="android_java" />
<output filename="java/res/values-ml/privacy_sandbox_strings.xml" lang="ml" type="android" context="android_java" />
<output filename="java/res/values-mn/privacy_sandbox_strings.xml" lang="mn" type="android" context="android_java" />
<output filename="java/res/values-mr/privacy_sandbox_strings.xml" lang="mr" type="android" context="android_java" />
<output filename="java/res/values-ms/privacy_sandbox_strings.xml" lang="ms" type="android" context="android_java" />
<output filename="java/res/values-my/privacy_sandbox_strings.xml" lang="my" type="android" context="android_java" />
<output filename="java/res/values-ne/privacy_sandbox_strings.xml" lang="ne" type="android" context="android_java" />
<output filename="java/res/values-nl/privacy_sandbox_strings.xml" lang="nl" type="android" context="android_java" />
<output filename="java/res/values-nb/privacy_sandbox_strings.xml" lang="no" type="android" context="android_java" />
<output filename="java/res/values-or/privacy_sandbox_strings.xml" lang="or" type="android" context="android_java" />
<output filename="java/res/values-pa/privacy_sandbox_strings.xml" lang="pa" type="android" context="android_java" />
<output filename="java/res/values-pl/privacy_sandbox_strings.xml" lang="pl" type="android" context="android_java" />
<output filename="java/res/values-pt-rBR/privacy_sandbox_strings.xml" lang="pt-BR" type="android" context="android_java" />
<output filename="java/res/values-pt-rPT/privacy_sandbox_strings.xml" lang="pt-PT" type="android" context="android_java" />
<output filename="java/res/values-ro/privacy_sandbox_strings.xml" lang="ro" type="android" context="android_java" />
<output filename="java/res/values-ru/privacy_sandbox_strings.xml" lang="ru" type="android" context="android_java" />
<output filename="java/res/values-si/privacy_sandbox_strings.xml" lang="si" type="android" context="android_java" />
<output filename="java/res/values-sk/privacy_sandbox_strings.xml" lang="sk" type="android" context="android_java" />
<output filename="java/res/values-sl/privacy_sandbox_strings.xml" lang="sl" type="android" context="android_java" />
<output filename="java/res/values-sq/privacy_sandbox_strings.xml" lang="sq" type="android" context="android_java" />
<output filename="java/res/values-sr/privacy_sandbox_strings.xml" lang="sr" type="android" context="android_java" />
<output filename="java/res/values-b+sr+Latn/privacy_sandbox_strings.xml" lang="sr-Latn" type="android" context="android_java" />
<output filename="java/res/values-sv/privacy_sandbox_strings.xml" lang="sv" type="android" context="android_java" />
<output filename="java/res/values-sw/privacy_sandbox_strings.xml" lang="sw" type="android" context="android_java" />
<output filename="java/res/values-ta/privacy_sandbox_strings.xml" lang="ta" type="android" context="android_java" />
<output filename="java/res/values-te/privacy_sandbox_strings.xml" lang="te" type="android" context="android_java" />
<output filename="java/res/values-th/privacy_sandbox_strings.xml" lang="th" type="android" context="android_java" />
<output filename="java/res/values-tr/privacy_sandbox_strings.xml" lang="tr" type="android" context="android_java" />
<output filename="java/res/values-uk/privacy_sandbox_strings.xml" lang="uk" type="android" context="android_java" />
<output filename="java/res/values-ur/privacy_sandbox_strings.xml" lang="ur" type="android" context="android_java" />
<output filename="java/res/values-uz/privacy_sandbox_strings.xml" lang="uz" type="android" context="android_java" />
<output filename="java/res/values-vi/privacy_sandbox_strings.xml" lang="vi" type="android" context="android_java" />
<output filename="java/res/values-zh-rCN/privacy_sandbox_strings.xml" lang="zh-CN" type="android" context="android_java" />
<output filename="java/res/values-zh-rHK/privacy_sandbox_strings.xml" lang="zh-HK" type="android" context="android_java" />
<output filename="java/res/values-zh-rTW/privacy_sandbox_strings.xml" lang="zh-TW" type="android" context="android_java" />
<output filename="java/res/values-zu/privacy_sandbox_strings.xml" lang="zu" type="android" context="android_java" />
<!-- Pseudolocales -->
<output filename="java/res/values-ar-rXB/privacy_sandbox_strings.xml" lang="ar-XB" type="android" context="android_java" />
<output filename="java/res/values-en-rXA/privacy_sandbox_strings.xml" lang="en-XA" type="android" context="android_java" />
</if>
</outputs>
<translations>
<file path="strings/privacy_sandbox_strings_af.xtb" lang="af" />
<file path="strings/privacy_sandbox_strings_am.xtb" lang="am" />
<file path="strings/privacy_sandbox_strings_ar.xtb" lang="ar" />
<file path="strings/privacy_sandbox_strings_as.xtb" lang="as" />
<file path="strings/privacy_sandbox_strings_az.xtb" lang="az" />
<file path="strings/privacy_sandbox_strings_be.xtb" lang="be" />
<file path="strings/privacy_sandbox_strings_bg.xtb" lang="bg" />
<file path="strings/privacy_sandbox_strings_bn.xtb" lang="bn" />
<file path="strings/privacy_sandbox_strings_bs.xtb" lang="bs" />
<file path="strings/privacy_sandbox_strings_ca.xtb" lang="ca" />
<file path="strings/privacy_sandbox_strings_cs.xtb" lang="cs" />
<file path="strings/privacy_sandbox_strings_cy.xtb" lang="cy" />
<file path="strings/privacy_sandbox_strings_da.xtb" lang="da" />
<file path="strings/privacy_sandbox_strings_de.xtb" lang="de" />
<file path="strings/privacy_sandbox_strings_el.xtb" lang="el" />
<file path="strings/privacy_sandbox_strings_en-GB.xtb" lang="en-GB" />
<file path="strings/privacy_sandbox_strings_es.xtb" lang="es" />
<file path="strings/privacy_sandbox_strings_es-419.xtb" lang="es-419" />
<file path="strings/privacy_sandbox_strings_et.xtb" lang="et" />
<file path="strings/privacy_sandbox_strings_eu.xtb" lang="eu" />
<file path="strings/privacy_sandbox_strings_fa.xtb" lang="fa" />
<file path="strings/privacy_sandbox_strings_fi.xtb" lang="fi" />
<file path="strings/privacy_sandbox_strings_fil.xtb" lang="fil" />
<file path="strings/privacy_sandbox_strings_fr.xtb" lang="fr" />
<file path="strings/privacy_sandbox_strings_fr-CA.xtb" lang="fr-CA" />
<file path="strings/privacy_sandbox_strings_gl.xtb" lang="gl" />
<file path="strings/privacy_sandbox_strings_gu.xtb" lang="gu" />
<file path="strings/privacy_sandbox_strings_hi.xtb" lang="hi" />
<file path="strings/privacy_sandbox_strings_hr.xtb" lang="hr" />
<file path="strings/privacy_sandbox_strings_hu.xtb" lang="hu" />
<file path="strings/privacy_sandbox_strings_hy.xtb" lang="hy" />
<file path="strings/privacy_sandbox_strings_id.xtb" lang="id" />
<file path="strings/privacy_sandbox_strings_is.xtb" lang="is" />
<file path="strings/privacy_sandbox_strings_it.xtb" lang="it" />
<!-- The translation console uses 'iw' for Hebrew, but we use 'he'. -->
<file path="strings/privacy_sandbox_strings_iw.xtb" lang="he" />
<file path="strings/privacy_sandbox_strings_ja.xtb" lang="ja" />
<file path="strings/privacy_sandbox_strings_ka.xtb" lang="ka" />
<file path="strings/privacy_sandbox_strings_kk.xtb" lang="kk" />
<file path="strings/privacy_sandbox_strings_km.xtb" lang="km" />
<file path="strings/privacy_sandbox_strings_kn.xtb" lang="kn" />
<file path="strings/privacy_sandbox_strings_ko.xtb" lang="ko" />
<file path="strings/privacy_sandbox_strings_ky.xtb" lang="ky" />
<file path="strings/privacy_sandbox_strings_lo.xtb" lang="lo" />
<file path="strings/privacy_sandbox_strings_lt.xtb" lang="lt" />
<file path="strings/privacy_sandbox_strings_lv.xtb" lang="lv" />
<file path="strings/privacy_sandbox_strings_mk.xtb" lang="mk" />
<file path="strings/privacy_sandbox_strings_ml.xtb" lang="ml" />
<file path="strings/privacy_sandbox_strings_mn.xtb" lang="mn" />
<file path="strings/privacy_sandbox_strings_mr.xtb" lang="mr" />
<file path="strings/privacy_sandbox_strings_ms.xtb" lang="ms" />
<file path="strings/privacy_sandbox_strings_my.xtb" lang="my" />
<file path="strings/privacy_sandbox_strings_ne.xtb" lang="ne" />
<file path="strings/privacy_sandbox_strings_nl.xtb" lang="nl" />
<file path="strings/privacy_sandbox_strings_no.xtb" lang="no" />
<file path="strings/privacy_sandbox_strings_or.xtb" lang="or" />
<file path="strings/privacy_sandbox_strings_pa.xtb" lang="pa" />
<file path="strings/privacy_sandbox_strings_pl.xtb" lang="pl" />
<file path="strings/privacy_sandbox_strings_pt-BR.xtb" lang="pt-BR" />
<file path="strings/privacy_sandbox_strings_pt-PT.xtb" lang="pt-PT" />
<file path="strings/privacy_sandbox_strings_ro.xtb" lang="ro" />
<file path="strings/privacy_sandbox_strings_ru.xtb" lang="ru" />
<file path="strings/privacy_sandbox_strings_si.xtb" lang="si" />
<file path="strings/privacy_sandbox_strings_sk.xtb" lang="sk" />
<file path="strings/privacy_sandbox_strings_sl.xtb" lang="sl" />
<file path="strings/privacy_sandbox_strings_sq.xtb" lang="sq" />
<file path="strings/privacy_sandbox_strings_sr.xtb" lang="sr" />
<file path="strings/privacy_sandbox_strings_sr-Latn.xtb" lang="sr-Latn" />
<file path="strings/privacy_sandbox_strings_sv.xtb" lang="sv" />
<file path="strings/privacy_sandbox_strings_sw.xtb" lang="sw" />
<file path="strings/privacy_sandbox_strings_ta.xtb" lang="ta" />
<file path="strings/privacy_sandbox_strings_te.xtb" lang="te" />
<file path="strings/privacy_sandbox_strings_th.xtb" lang="th" />
<file path="strings/privacy_sandbox_strings_tr.xtb" lang="tr" />
<file path="strings/privacy_sandbox_strings_uk.xtb" lang="uk" />
<file path="strings/privacy_sandbox_strings_ur.xtb" lang="ur" />
<file path="strings/privacy_sandbox_strings_uz.xtb" lang="uz" />
<file path="strings/privacy_sandbox_strings_vi.xtb" lang="vi" />
<file path="strings/privacy_sandbox_strings_zh-CN.xtb" lang="zh-CN" />
<file path="strings/privacy_sandbox_strings_zh-HK.xtb" lang="zh-HK" />
<file path="strings/privacy_sandbox_strings_zh-TW.xtb" lang="zh-TW" />
<file path="strings/privacy_sandbox_strings_zu.xtb" lang="zu" />
</translations>
<release seq="1">
<!--For strings used exclusively within the Privacy Sandbox Dialogs, those containing the word "Chrome" do not require a "Chromium" conditional variant, as these dialogs only appear in Chrome-branded builds-->
<messages fallback_to_english="true">
<!-- Ad Topics Page disclaimer -->
<message name="IDS_SETTINGS_TOPICS_PAGE_DISCLAIMER_CLANK" desc="Disclaimer of the new Ad topics setting. This text appears beneath the sublabel." formatter_data="android_java">
Ad topics are just one of many things a site can use to personalize ads. Even without ad topics, sites can still show you ads but they may be less personalized. Learn more about <ph name="BEGIN_LINK_1"><link1></ph>managing your ad privacy<ph name="END_LINK_1"></link1></ph>.
</message>
<!-- Third Party Cookie settings -->
<message name="IDS_SETTINGS_THIRD_PARTY_COOKIES_LINK_ROW_SUB_LABEL_LIMITED" desc="Sub-label for a button that links to the 'Third-party cookies' settings page when the user has third-party cookies limited.">
Third-party cookies are limited
</message>
<!-- PS Internals UI - Private State Tokens -->
<message name="IDS_PRIVATE_STATE_TOKENS_HEADING_LABEL" desc="Title of the page that contains information about Private State Tokens." translateable="false">
Private State Tokens
</message>
<message name="IDS_PRIVATE_STATE_TOKENS_DESCRIPTION_LABEL" desc="Label that provides the user more details about what they can see on this page i.e. the tokens that have been issued and by whom and if and when they were redeemed." translateable="false">
See who has issued private state tokens on your device and how they are used.
</message>
<!-- ACT Snackbar -->
<message name="IDS_PRIVACY_SANDBOX_TRACKING_PROTECTION_SNACKBAR_TITLE" desc="Title of the Tracking Protection snackbar." formatter_data="android_java" translateable="false">
App not working?
</message>
<message name="IDS_PRIVACY_SANDBOX_TRACKING_PROTECTION_SNACKBAR_ACTION" desc="Action of the Tracking Protection snackbar." formatter_data="android_java" translateable="false">
Change protections
</message>
<!-- User Bypass -->
<message name="IDS_TRACKING_PROTECTION_BUBBLE_3PC_ALLOWED_SUBTITLE" desc="The subtitle label for the third-party cookies item in User Bypass when 3PC are allowed.">
Allowed
</message>
<message name="IDS_TRACKING_PROTECTION_BUBBLE_3PC_BLOCKED_SUBTITLE" desc="The subtitle label for the third-party cookies item in User Bypass when 3PC are blocked.">
Blocked
</message>
<message name="IDS_TRACKING_PROTECTION_BUBBLE_3PC_LIMITED_SUBTITLE" desc="The subtitle label for the third-party cookies item in User Bypass when 3PC are limited (i.e. blocked with mitigations).">
Limited
</message>
<message name="IDS_COOKIE_CONTROLS_BUBBLE_COOKIES_LIMITED_TITLE" desc="Title shown on the cookie controls bubble when third-party cookies are limited.">
Third-party cookies limited
</message>
<message name="IDS_TRACKING_PROTECTIONS_BUBBLE_RESUME_PROTECTIONS_LABEL" desc="" translateable="false">
Resume tracking protections
</message>
<message name="IDS_TRACKING_PROTECTIONS_BUBBLE_PAUSE_PROTECTIONS_LABEL" desc="" translateable="false">
Pause tracking protections
</message>
<message name="IDS_TRACKING_PROTECTIONS_BUBBLE_ACTIVE_PROTECTIONS_DESCRIPTION" desc="" translateable="false">
Try pausing tracking protections on this site, which can help site features work as expected.
</message>
<message name="IDS_TRACKING_PROTECTIONS_BUBBLE_PAUSED_PROTECTIONS_DESCRIPTION" desc="" translateable="false">
Protections are paused until all Incognito windows are closed.
</message>
<message name="IDS_TRACKING_PROTECTIONS_BUBBLE_PAUSED_PROTECTIONS_TITLE" desc="" translateable="false">
Tracking protections are paused on this site
</message>
<message name="IDS_TRACKING_PROTECTIONS_PAGE_ACTION_PROTECTIONS_PAUSED_LABEL" desc="" translateable="false">
Tracking protections paused
</message>
<message name="IDS_TRACKING_PROTECTIONS_PAGE_ACTION_PROTECTIONS_RESUMED_LABEL" desc="" translateable="false">
Tracking protections resumed
</message>
<message name="IDS_TRACKING_PROTECTIONS_PAGE_ACTION_PROTECTIONS_ENABLED_LABEL" desc="" translateable="false">
Tracking protections enabled
</message>
<!-- Page Info -->
<message name="IDS_PAGE_INFO_PRIVACY_SITE_DATA_HEADER" desc="" translateable="false">
Privacy and site data
</message>
<message name="IDS_PAGE_INFO_PRIVACY_SITE_DATA_TOOLTIP" desc="" translateable="false">
Options for privacy and site data
</message>
<message name="IDS_PAGE_INFO_PRIVACY_SITE_DATA_DESCRIPTION" desc="" translateable="false">
Third-party cookies are blocked. Incognito also provides features that can limit the information available to companies whose content is embedded on a site you visit.
</message>
<if expr="_google_chrome">
<then>
<message name="IDS_PAGE_INFO_PRIVACY_SITE_DATA_3PCS_ENTERPRISE_ALLOWED_DESCRIPTION" desc="" translateable="false">
Chrome blocks third-party cookies in Incognito, but your administrator allowed third-party cookies for this site. Incognito also provides features that can limit the information available to companies whose content is embedded on a site you visit.
</message>
<message name="IDS_PAGE_INFO_PRIVACY_SITE_DATA_3PCS_EXTENSION_ALLOWED_DESCRIPTION" desc="" translateable="false">
Chrome blocks third-party cookies in Incognito, but an extension allowed third-party cookies for this site.
</message>
<message name="IDS_PAGE_INFO_PRIVACY_SITE_DATA_3PCS_USER_ALLOWED_DESCRIPTION" desc="" translateable="false">
Chrome blocks third-party cookies in Incognito, but you made an exception for this site.
</message>
</then>
<else>
<message name="IDS_PAGE_INFO_PRIVACY_SITE_DATA_3PCS_ENTERPRISE_ALLOWED_DESCRIPTION" desc="" translateable="false">
Chromium blocks third-party cookies in Incognito, but your administrator allowed third-party cookies for this site. Incognito also provides features that can limit the information available to companies whose content is embedded on a site you visit.
</message>
<message name="IDS_PAGE_INFO_PRIVACY_SITE_DATA_3PCS_EXTENSION_ALLOWED_DESCRIPTION" desc="" translateable="false">
Chromium blocks third-party cookies in Incognito, but an extension allowed third-party cookies for this site.
</message>
<message name="IDS_PAGE_INFO_PRIVACY_SITE_DATA_3PCS_USER_ALLOWED_DESCRIPTION" desc="" translateable="false">
Chromium blocks third-party cookies in Incognito, but you made an exception for this site.
</message>
</else>
</if>
<message name="IDS_PAGE_INFO_INCOGNITO_TRACKING_PROTECTION_SETTINGS_BUTTON_TITLE" desc="" translateable="false">
Settings
</message>
<message name="IDS_PAGE_INFO_INCOGNITO_TRACKING_PROTECTION_SETTINGS_BUTTON_SUBTITLE" desc="" translateable="false">
Manage Incognito tracking protections
</message>
<!-- Privacy UX WebUI -->
<!-- Privacy Sandbox Ads Notice -->
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_LEARN_MORE_V2_CLANK" desc="A sentence that appears alone at the bottom of the learn more page. It offers the user a path towards additional information about how Google protects their data." formatter_data="android_java">
Learn more about how Google protects your data in our <ph name="BEGIN_LINK"><link></ph>Privacy Policy<ph name="END_LINK"></link></ph>.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_LEARN_MORE_V2_DESKTOP" desc="A sentence that appears alone at the bottom of the learn more page. It offers the user a path towards additional information about how Google protects their data.">
Learn more about how Google protects your data in our <ph name="BEGIN_LINK1"><a href="#" id="$1" aria-description="$2" on-click="$3"></ph>Privacy Policy<ph name="LINK_END1"></a></ph>.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_LEARN_MORE_V2_DESKTOP_ARIA_DESCRIPTION" desc="Screenreader text for the 'Privacy Policy' link.">
Learn more about how Google protects your data in our Privacy Policy.
</message>
<!-- Ad Topics EEA consent - Ads API UX Enhancements -->
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_DESCRIPTION_2_V2" desc="This string gives an overview of “ad topics”, an ad privacy feature. “Topics of interest” refers to topics that are relevant or interesting to the user based on their browsing activity online." formatter_data="android_java">
Ad topics help websites show you relevant ads while protecting your browsing history and identity. Chrome can note topics of interest based on your recent browsing history. Later, a site you visit can ask Chrome for relevant topics to personalize the ads you see.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_DESCRIPTION_4_V2" desc="This string notifies users that they can make changes to their ad topics in the “ad privacy” section of settings." formatter_data="android_java">
You can make changes in ad privacy settings
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_LEARN_MORE_BULLET_1_V2" desc="This string appears when the user expands on the “More about ad topics” label. It explains to the user in second person that their browsing history is used to generate ad topics. “Site” refers to a website a user may visit." formatter_data="android_java">
<ph name="BEGIN_BOLD"><b></ph>What data is used?<ph name="END_BOLD"></b></ph> Your ad topics are based on your recent browsing history, a list of sites you've visited using Chrome on this device.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_LEARN_MORE_BULLET_2_V2" desc="This string appears when the user expands on the “More about ad topics” label. It explains to the user in second person that Chrome uses their browsing activity to note topics of interest. When a user visits a site, that site can ask Chrome for these topics of interest to personalize ads for the user. “Site” refers to a website a user may visit." formatter_data="android_java">
<ph name="BEGIN_BOLD"><b></ph>How do sites use this data?<ph name="END_BOLD"></b></ph> Chrome notes topics of interest as you browse. Topic labels are predefined and include things like, Arts & Entertainment, Shopping, and Sports. Later, a site you visit can ask Chrome for a few of your topics to personalize the ads you see.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_LEARN_MORE_BULLET_2_DESCRIPTION" desc="This string appears when the user expands on the “More about ad topics” label. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language.">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. <ph name="BEGIN_LINK1"><a href="#" id="$1" aria-description="$2" on-click="$3"></ph>Learn more in our Privacy Policy<ph name="LINK_END1"></a></ph>
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_LEARN_MORE_BULLET_2_DESCRIPTION_CLANK" desc="This string appears when the user expands on the “More about ad topics” label. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language." formatter_data="android_java">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. <ph name="BEGIN_LINK"><link></ph>Learn more in our Privacy Policy<ph name="END_LINK"></link></ph>
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_LEARN_MORE_BULLET_3_V2" desc="This string appears when the user expands on the “More about ad topics” label. “Auto-deletes” is short for “automatically deletes”. “A topic” refers to one of the ad topics generated by Chrome. “Block topics” means a user can stop Chrome from sharing an ad topic with sites. " formatter_data="android_java">
<ph name="BEGIN_BOLD"><b></ph>How can you manage this data?<ph name="END_BOLD"></b></ph> Chrome auto-deletes topics that are older than 4 weeks. As you keep browsing, a topic might reappear on the list. You can also block topics you don't want Chrome to share with sites and turn ad topics off at any time in Chrome settings.
</message>
<!--Ad Topics EEA Consent Privacy Policy text V3 -->
<message name="IDS_PRIVACY_SANDBOX_M1_PRIVACY_POLICY_TEXT_V3" desc="" translateable="false" formatter_data="android_java">
Google requires companies to state publicly that they won’t use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also store shared data for longer than Chrome and combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. <ph name="BEGIN_LINK"><link></ph>Learn more in our Privacy Policy<ph name="END_LINK"></link></ph>
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_MORE_V3" desc="" translateable="false" formatter_data="android_java">
More
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_GOT_IT_BUTTON_V3" desc="" translateable="false" formatter_data="android_java">
Got it
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_SETTINGS_BUTTON_V3" desc="" translateable="false" formatter_data="android_java">
Settings
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_DIALOG_LAST_TEXT_V3" desc="" translateable="false" formatter_data="android_java">
You can make changes in ad privacy settings
</message>
<!--Ad Topics EEA Consent V3 -->
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_TITLE_V3" desc="" translateable="false" formatter_data="android_java">
Allow sites to share limited information with one another when personalizing content and ads?
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_DESCRIPTION_V3" desc="" translateable="false" formatter_data="android_java">
Websites and their advertising partners can use ad topics to personalize content and ads for you. Unlike other personalization methods, such as third-party cookies, ad topics help to limit what sites can learn about you while you browse.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_CARD_1_V3" desc="" translateable="false" formatter_data="android_java">
When on, ad topics notes topics you might be interested in based on your recent browsing history
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_CARD_2_V3" desc="" translateable="false" formatter_data="android_java">
Chrome uses privacy measures like encryption, noise, and aggregation to help limit the information shared with sites that use your ad topics
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_CARD_3_V3" desc="" translateable="false" formatter_data="android_java">
Chrome auto-deletes topics that are older than 4 weeks
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_CARD_4_V3" desc="" translateable="false" formatter_data="android_java">
You can see your ad topics and block the ones you don’t want shared with sites at any time in Chrome settings
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_ADS_TOPIC_DESCRIPTION_V3" desc="" translateable="false" formatter_data="android_java">
Whether an ad or content you see is personalized can depend on many things, including ad topics, your cookie settings, and if the site you’re viewing customizes your experience.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_ADS_TOPIC_DROPDOWN_V3" desc="" translateable="false" formatter_data="android_java">
More about ad topics
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_SCROLL_TO_CHOOSE_BUTTON_V3" desc="" translateable="false" formatter_data="android_java">
Scroll to choose
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_DROPDOWN_TITLE_1_V3" desc="" translateable="false" formatter_data="android_java">
What data is used?
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_DROPDOWN_DESCRIPTION_1_V3" desc="" translateable="false" formatter_data="android_java">
Your ad topics are based on your recent browsing history, a list of sites you’ve visited using Chrome on this device.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_DROPDOWN_TITLE_2_V3" desc="" translateable="false" formatter_data="android_java">
How do sites use this data?
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_DROPDOWN_DESCRIPTION_2_V3" desc="" translateable="false" formatter_data="android_java">
Chrome notes topics of interest as you browse. Topic labels are predefined and include things like, Arts & Entertainment, Shopping, and Sports. Later, a site you visit can ask Chrome for a few of your topics to personalize the ads you see.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_DROPDOWN_TITLE_3_V3" desc="" translateable="false" formatter_data="android_java">
How can you manage this data?
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_DROPDOWN_DESCRIPTION_3_V3" desc="" translateable="false" formatter_data="android_java">
Chrome auto-deletes topics that are older than 4 weeks. As you keep browsing, a topic might reappear on the list. You can also block topics you don’t want Chrome to share with sites and turn ad topics off at any time in Chrome settings.
</message>
<!--Ad Topics EEA Notice V3 -->
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_TITLE_V3" desc="" translateable="false" formatter_data="android_java">
More ways to personalize your experience while limiting what sites can learn about you
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_SECTION_1_HEADING_V3" desc="" translateable="false" formatter_data="android_java">
Site-suggested ads
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_SECTION_1_CONTENT_V3" desc="" translateable="false" formatter_data="android_java">
Site-suggested ads help limit what websites and their advertising partners can learn about you when they show you personalized content and ads.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_CARD_1_V3" desc="" translateable="false" formatter_data="android_java">
Based on your activity, such as the sites you visit and what you view or click, other sites can suggest related ads as you continue browsing
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_CARD_2_V3" desc="" translateable="false" formatter_data="android_java">
You can see a list of these sites and block the ones you don’t want in settings
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_DROPDOWN_V3" desc="" translateable="false" formatter_data="android_java">
More about site-suggested ads
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_EEA_NOTICE_DROPDOWN_TITLE_1_V3" desc="" translateable="false" formatter_data="android_java">
How do sites use this data?
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_EEA_NOTICE_DROPDOWN_DESCRIPTION_1_V3" desc="" translateable="false" formatter_data="android_java">
Sites and their advertising partners can use your activity to personalize ads on other sites.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_EEA_NOTICE_DROPDOWN_CARD_CONTENT_V3" desc="" translateable="false" formatter_data="android_java">
For example, if you visit a site to find recipes for dinner, the site might decide that you’re interested in cooking. Later, another site may show you a related ad for a grocery delivery service suggested by the first site.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_EEA_NOTICE_DROPDOWN_TITLE_2_V3" desc="" translateable="false" formatter_data="android_java">
How can you manage this data?
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_EEA_NOTICE_DROPDOWN_DESCRIPTION_2_V3" desc="" translateable="false" formatter_data="android_java">
Chrome auto-deletes sites that are older than 90 days. A site you visit again might reappear on the list. You can also block a site from suggesting ads for you and turn site-suggested ads off at any time in Chrome settings.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_SECTION_2_HEADING_V3" desc="" translateable="false" formatter_data="android_java">
Ad measurement
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_SECTION_2_CONTENT_1_V3" desc="" translateable="false" formatter_data="android_java">
With ad measurement, sites you visit can share information with other sites that helps them measure the performance of their ads.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_SECTION_2_CONTENT_2_V3" desc="" translateable="false" formatter_data="android_java">
Your Android device may include a similar setting. If ad measurement is turned on in Chrome and on your Android device, a company may be able to measure the effectiveness of an ad across web sites you visit and apps you use.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_CARD_3_V3" desc="" translateable="false" formatter_data="android_java">
Limited types of data are shared between sites, such as whether you made a purchase after visiting a site
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_CARD_4_V3" desc="" translateable="false" formatter_data="android_java">
Chrome uses privacy measures to limit the information sites can share with one another
</message>
<!--Ad Topics EEA Notice - Ads API UX Enhancements -->
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_DESCRIPTION_1_V2" desc="This string explains the function of “ad privacy features”. “Ad” is short for “advertisement”." formatter_data="android_java">
Ad privacy features help limit what websites and their advertising partners can learn about you when they show you personalized ads.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_SITE_SUGGESTED_ADS_TITLE" desc="This is a header for more information about site-suggested, an ad privacy feature." formatter_data="android_java">
Site-suggested ads
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_SITE_SUGGESTED_ADS_DESCRIPTION" desc="This string explains the function of “site-suggested ads” using second person. “Sites” refers to websites the user visits." formatter_data="android_java">
Site-suggested ads help protect your browsing history and identity while allowing sites to show you relevant ads. Using your activity, such as how you spend your time on sites you visit, other sites can suggest related ads as you continue browsing. You can see a list of these sites and block the ones you don't want in settings.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_SITE_SUGGESTED_ADS_LEARN_MORE_LABEL" desc="This is an actionable string. When a user clicks on it, a drop down menu opens to give additional information about how the “site-suggested ads” feature works." formatter_data="android_java">
More about site-suggested ads
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_SITE_SUGGESTED_ADS_LEARN_MORE_BULLET_1" desc="This string appears when the user expands the “More about site-suggested ads” card. It explains to the user, in second person, how a website they visit may use their activity to recommend ads that are personal to the user. The user is also provided with an example of how a website may do so." formatter_data="android_java">
<ph name="BEGIN_BOLD"><b></ph>How do sites use this data?<ph name="END_BOLD"></b></ph> Sites and their advertising partners can use your activity to personalize ads on other sites. For example, if you visit a site to find recipes for dinner, the site might decide that you're interested in cooking. Later, another site may show you a related ad for a grocery delivery service suggested by the first site.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_SITE_SUGGESTED_ADS_LEARN_MORE_BULLET_1_DESCRIPTION" desc="This string appears when the user expands on the “More about ad topics” label. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This string is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language.">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. <ph name="BEGIN_LINK1"><a href="#" id="$1" aria-description="$2" on-click="$3"></ph>Learn more in our Privacy Policy<ph name="LINK_END1"></a></ph>
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_SITE_SUGGESTED_ADS_LEARN_MORE_BULLET_1_DESCRIPTION_CLANK" desc="This string appears when the user expands on the “More about ad topics” label. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This string is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language." formatter_data="android_java">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. <ph name="BEGIN_LINK"><link></ph>Learn more in our Privacy Policy<ph name="END_LINK"></link></ph>
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_SITE_SUGGESTED_ADS_LEARN_MORE_BULLET_2" desc="This string appears when the user expands on the “More about ad topics” label and explains to the user how they can manage what data is used by websites. “Auto-deletes” is short for “automatically deletes”." formatter_data="android_java">
<ph name="BEGIN_BOLD"><b></ph>How can you manage this data?<ph name="END_BOLD"></b></ph> Chrome auto-deletes sites that are older than 30 days. A site you visit again might reappear on the list. You can also block a site from suggesting ads for you and turn site-suggested ads off at any time in Chrome settings.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_AD_MEASUREMENT_TITLE" desc="This is a header for more information about ad measurement, an ad privacy feature." formatter_data="android_java">
Ad measurement
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_AD_MEASUREMENT_DESCRIPTION" desc="This string explains how the “ad measurement” feature, explaining that data is shared between websites to measure how their ads are doing. “Performance” refers to how well or poorly an ad is working. In addition, it gives a real life example for the user to understand the feature." formatter_data="android_java">
With ad measurement, limited types of data are shared between sites to measure the performance of their ads, such as whether you made a purchase after visiting a site.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_AD_MEASUREMENT_LEARN_MORE_LABEL" desc="This is an actionable string. When a user clicks on it, a drop down menu opens to give additional information about how the “ad measurement” feature works." formatter_data="android_java">
More about ad measurement
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_AD_MEASUREMENT_LEARN_MORE_BULLET_1" desc="This string appears when the user expands the “More about ad measurement” card. It explains how sites visited by the user may ask Chrome for information to measure the performance of their advertisements." formatter_data="android_java">
<ph name="BEGIN_BOLD"><b></ph>How do sites use this data?<ph name="END_BOLD"></b></ph> Sites you visit can ask Chrome for information that helps them measure the performance of their ads. Chrome protects your privacy by limiting the information sites can share with one another.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_EEA_LAST_TEXT" desc="This string notifies users that they can make changes to their ad topics in the “ad privacy” section of settings." formatter_data="android_java">
You can make changes in ad privacy settings
</message>
<!--Ad Topics ROW Notice - Ads API UX Enhancements -->
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_LEARN_MORE_BULLET_2_V2" desc="This string appears when the user clicks on the “More about ads in Chrome” under the “More useful ads” header. It explains to the user, in second person, how a website they visit may use their activity to recommend ads that are personal to the user. The user is also provided with an example of how a website may do so." formatter_data="android_java">
Sites and their advertising partners can use your activity, such as how you spend your time on sites you visit, to personalize ads on other sites. For example, if you visit a site to find recipes for dinner, the site might decide that you're interested in cooking. Later, another site may show you a related ad for a grocery delivery service suggested by the first site.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_LEARN_MORE_DESCRIPTION_2_V2" desc="This string appears when the user clicks on the “More about ads in Chrome” under the “More useful ads” header. It explains that a website can ask Chrome for this information. “Ads suggested by sites” is the same as “site-suggested ads”." formatter_data="android_java">
A site you visit can ask for this information — either your ad topics or ads suggested by sites you've visited.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_LEARN_MORE_HEADING_3" desc="This string appears when the user clicks on the “More about ads in Chrome” under the “Measuring how well an ad performs” header. " formatter_data="android_java">
How sites use your data
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_LEARN_MORE_DESCRIPTION_5_V2" desc="This string appears when the user expands on the “More about ads in Chrome” label. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language.">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. <ph name="BEGIN_LINK1"><a href="#" id="$1" aria-description="$2" on-click="$3"></ph>Learn more in our Privacy Policy<ph name="LINK_END1"></a></ph>
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_LEARN_MORE_DESCRIPTION_5_V2_CLANK" desc="This string appears when the user expands on the “More about ads in Chrome” label. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language." formatter_data="android_java">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. <ph name="BEGIN_LINK"><link></ph>Learn more in our Privacy Policy<ph name="END_LINK"></link></ph>
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_LAST_TEXT" desc="This string notifies users that they can make changes to their ad topics in the “ad privacy” section of settings." formatter_data="android_java">
You can make changes in ad privacy settings
</message>
<!--Ad Topics ROW Notice v3 - Ads API UX Enhancements -->
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_TITLE_V3" desc="" translateable="false" formatter_data="android_java">
Personalize your experience while limiting what websites can learn about you
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DESCRIPTION_V3" desc="" translateable="false" formatter_data="android_java">
Websites and their advertising partners can use your browsing history and activity on the sites you visit to personalize content and ads. Those sites can then share limited information with other sites to help them measure the performance of their ads.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_CARD_1_V3" desc="" translateable="false" formatter_data="android_java">
Chrome uses privacy measures like encryption, noise, and aggregation to help limit the information shared with sites that use your topics and activity
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_CARD_2_V3" desc="" translateable="false" formatter_data="android_java">
Chrome regularly auto-deletes topics and sites that suggest ads for you
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_CARD_3_V3" desc="" translateable="false" formatter_data="android_java">
You can block specific topics and sites you don’t like at any time in Chrome settings
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_ADS_TOPIC_DESCRIPTION_V3" desc="" translateable="false" formatter_data="android_java">
Whether an ad or content you see is personalized can depend on many things, including these settings, your cookie settings, and if the site you’re viewing customizes your experience.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_TITLE_V3" desc="" translateable="false" formatter_data="android_java">
More about how Chrome personalizes content and ads
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_SETTINGS_BUTTON_V3" desc="" translateable="false" formatter_data="android_java">
Settings
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_GOT_IT_BUTTON_V3" desc="" translateable="false" formatter_data="android_java">
Got it
</message>
<!--Ad Topics ROW Notice v3 Dropdown Content - Ads API UX Enhancements -->
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_TITLE_1_V3" desc="" translateable="false" formatter_data="android_java">
Ad topics
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_DESCRIPTION_1_V3" desc="" translateable="false" formatter_data="android_java">
Chrome notes topics of interest as you browse to help sites and their advertising partners personalize content and ads. Compared to third-party cookies, a commonly used advertising technology, limited information is shared with sites while you browse.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_CARD_DESCRIPTION_1_V3" desc="" translateable="false" formatter_data="android_java">
Topic labels are predefined and include things like, Arts & Entertainment, Shopping, and Sports. Later, a site you visit can ask Chrome for a few of your topics to personalize the ads you see.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_CARD_DESCRIPTION_2_V3" desc="" translateable="false" formatter_data="android_java">
Chrome auto-deletes topics that are older than 4 weeks
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_TITLE_2_V3" desc="" translateable="false" formatter_data="android_java">
Site-suggested ads
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_DESCRIPTION_2_V3" desc="" translateable="false" formatter_data="android_java">
Site-suggested ads helps to limit what sites and their advertising partners can learn about you when they show you personalized content and ads. Based on your activity, such as the sites you visit and what you view or click, other sites can suggest related ads as you continue browsing.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_CARD_DESCRIPTION_3_V3" desc="" translateable="false" formatter_data="android_java">
For example, if you visit a site to find recipes for dinner, the site might decide that you’re interested in cooking. Later, another site may show you a related ad for a grocery delivery service suggested by the first site.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_CARD_DESCRIPTION_4_V3" desc="" translateable="false" formatter_data="android_java">
Chrome auto-deletes sites that are older than 90 days
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_TITLE_3_V3" desc="" translateable="false" formatter_data="android_java">
Ad measurement
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_DESCRIPTION_3_PART_1_V3" desc="" translateable="false" formatter_data="android_java">
With ad measurement, sites you visit can share information with other sites that helps them measure the performance of their ads.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_DESCRIPTION_3_PART_2_V3" desc="" translateable="false" formatter_data="android_java">
Your Android settings may also have ad measurement. If this setting is turned on in Chrome and in Android, then the performance of an ad could be measured across both the websites you visit and the apps you use.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_CARD_DESCRIPTION_5_V3" desc="" translateable="false" formatter_data="android_java">
Limited types of data are shared between sites to measure the performance of an ad, such as whether you made a purchase after visiting a site
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_ROW_DROPDOWN_CARD_DESCRIPTION_6_V3" desc="" translateable="false" formatter_data="android_java">
Chrome uses privacy measures to limit the information sites can share with one another
</message>
<!--Ad Topics ROW Restricted v3 - Ads API UX Enhancements -->
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_RESTRICTED_TITLE_V3" desc="" translateable="false" formatter_data="android_java">
Chrome is helping websites to measure the performance of their ads
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_RESTRICTED_SUBTITLE_1_V3" desc="" translateable="false" formatter_data="android_java">
When ad measurement is on
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_RESTRICTED_DESCRIPTION_1_V3" desc="" translateable="false" formatter_data="android_java">
Websites can only share limited information, like when you see an ad on Chrome, with other websites
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_RESTRICTED_SUBTITLE_2_V3" desc="" translateable="false" formatter_data="android_java">
Things to consider
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_RESTRICTED_DESCRIPTION_2_V3" desc="" translateable="false" formatter_data="android_java">
Your Android phone or tablet may also have this setting
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_RESTRICTED_DESCRIPTION_3_V3" desc="" translateable="false" formatter_data="android_java">
This means that ad measurement could be turned on in both Chrome and Android
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_RESTRICTED_DESCRIPTION_4_V3" desc="" translateable="false" formatter_data="android_java">
If turned on in both places, then the performance of an ad could be measured across both the websites you visit and the apps you use
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_NOTICE_RESTRICTED_PRIVACY_POLICY_TEXT_V3" desc="" translateable="false" formatter_data="android_java">
<ph name="BEGIN_LINK"><link></ph>Learn more in our Privacy Policy<ph name="END_LINK"></link></ph>
</message>
<!--Site suggested ads settings page - Ads API UX Enhancement-->
<if expr="_google_chrome">
<then>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_CURRENT_SITES_DESCRIPTION_V2" desc="This string signals to users that they have the ability to block any website they don’t want using their activity. “Auto-deletes” means “automatically deletes”." formatter_data="android_java">
You can block sites you don't want. Chrome also auto-deletes sites from the list that are older than 30 days.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_LEARN_MORE_BULLET_3_V2" desc="This string appears in the “More about site-suggested ads” dialog. “Activity data” refers to information about a user's actions or behaviors on the internet.">
Chrome deletes any activity data that you've shared with sites after 30 days. If you visit a site again it may reappear on the list. Learn more about <ph name="BEGIN_LINK1"><a href="$1" aria-description="$2" target="_blank"></ph>managing your ad privacy in Chrome<ph name="LINK_END1"></a></ph>.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_LEARN_MORE_BULLET_3_V2_CLANK" desc="This string appears in the “More about site-suggested ads” dialog. “Activity data” refers to information about a user's actions or behaviors on the internet." formatter_data="android_java">
Chrome deletes any activity data that you've shared with sites after 30 days. If you visit a site again it may reappear on the list. Learn more about <ph name="BEGIN_LINK"><link></ph>managing your ad privacy in Chrome<ph name="END_LINK"></link></ph>.
</message>
</then>
<else>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_CURRENT_SITES_DESCRIPTION_V2" desc="This string signals to users that they have the ability to block any website they don’t want using their activity. “Auto-deletes” means “automatically deletes”." formatter_data="android_java">
You can block sites you don't want. Chromium also auto-deletes sites from the list that are older than 30 days.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_LEARN_MORE_BULLET_3_V2" desc="This string appears in the “More about site-suggested ads” dialog. “Activity data” refers to information about a user's actions or behaviors on the internet.">
Chromium deletes any activity data that you've shared with sites after 30 days. If you visit a site again it may reappear on the list. Learn more about <ph name="BEGIN_LINK1"><a href="$1" aria-description="$2" target="_blank"></ph>managing your ad privacy in Chromium<ph name="LINK_END1"></a></ph>.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_LEARN_MORE_BULLET_3_V2_CLANK" desc="This string appears in the “More about site-suggested ads” dialog. “Activity data” refers to information about a user's actions or behaviors on the internet." formatter_data="android_java">
Chromium deletes any activity data that you've shared with sites after 30 days. If you visit a site again it may reappear on the list. Learn more about <ph name="BEGIN_LINK"><link></ph>managing your ad privacy in Chromium<ph name="END_LINK"></link></ph>.
</message>
</else>
</if>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_TOGGLE_SUB_LABEL_V2" desc="This string appears on the “Site-suggested ads” settings page. It explains to the user how websites can use the user’s activity to personalize ads. “How you spend your time” refers to the user’s online activity." formatter_data="android_java">
Websites and their advertising partners can use your activity, such as how you spend your time on sites you visit, to personalize ads for you
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_EXPLANATION_V2_CLANK" desc="“Your activity” refers to the user's actions or behaviors while browsing the internet. The string explains that advertisements shown to the user by websites might be less personalized when the feature is turned off." formatter_data="android_java">
Your activity is one of the many things a site can use to suggest ads. When site-suggested ads is turned off, sites can still show you ads but they may be less personalized. Learn more about <ph name="BEGIN_LINK"><link></ph>site-suggested ads<ph name="END_LINK"></link></ph>.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_EXPLANATION_V2" desc="“Your activity” refers to the user's actions or behaviors while browsing the internet. The string explains that advertisements shown to the user by websites might be less personalized when the feature is turned off.">
Your activity is one of the many things a site can use to suggest ads. When site-suggested ads is turned off, sites can still show you ads but they may be less personalized. Learn more about
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_EXPLANATION_V2_LINK_TEXT" desc="Clicking on this hyperlink opens the “More about site-suggested ads” dialog.">
site-suggested ads.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_EXPLANATION_V2_LINK_ARIA_DESCRIPTION" desc="Aria description - for the hyperlinked text 'site-suggested ads'. Clicking on this hyperlink opens the “More about site-suggested ads” dialog.">
Learn more about site-suggested ads
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_LEARN_MORE_BULLET_1_V2" desc="This string appears in the “More about site-suggested ads” dialog. This string explains the function of “site-suggested ads” and how to manage them in settings “Sites” refers to websites the user visits." formatter_data="android_java">
Site-suggested ads help protect your browsing history and identity while allowing sites to show you relevant ads. Using your activity, other sites can suggest related ads as you continue browsing. You can see a list of these sites and block the ones you don't want in settings.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_LEARN_MORE_BULLET_2_V2" desc="This string appears in the “More about site-suggested ads” dialog. It gives an example in second person of how websites might use a user’s online history and activity to show them relevant ads." formatter_data="android_java">
For example, if you visit a site to find recipes for dinner, the site might decide that you're interested in cooking. Later, another site may show you a related ad for a grocery delivery service suggested by the first site.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_LEARN_MORE_BULLET_3_V2_LINK_ARIA_DESCRIPTION" desc="Aria Description for string. This string appears in the “More about site-suggested ads” dialog. It navigates users to the help center.">
Learn more about managing your ad privacy
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_FOOTER_V2_DESKTOP" desc="This string tells the user how an ad may be tailored to them. “Ad topics” and “cookie settings” are hyperlinks. When clicked on, they lead to their respective settings pages.">
Whether an ad you see is personalized can depend on many things including this setting, <ph name="BEGIN_LINK1"><a href="$1" aria-description="$2" target="_blank"></ph>ad topics<ph name="LINK_END1"></a></ph>, your <ph name="BEGIN_LINK2"><a href="$3" aria-description="$4" target="_blank"></ph>cookie settings<ph name="LINK_END2"></a></ph>, and if the site you're viewing personalizes ads.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_FOOTER_V2" desc="This string tells the user how an ad may be tailored to them. “Ad topics” and “cookie settings” are hyperlinks. When clicked on, they lead to their respective settings pages." formatter_data="android_java">
Whether an ad you see is personalized can depend on many things including this setting, <ph name="BEGIN_LINK_1"><link1></ph>ad topics<ph name="END_LINK_1"></link1></ph>, your <ph name="BEGIN_LINK_2"><link2></ph>cookie settings<ph name="END_LINK_2"></link2></ph>, and if the site you're viewing personalizes ads.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_DISCLAIMER_CLANK" desc="This string appears at the bottom of the “Site-suggested ads” settings page. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language." formatter_data="android_java">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. Learn more in our <ph name="BEGIN_LINK"><link></ph>Privacy Policy<ph name="END_LINK"></link></ph>.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_DISCLAIMER" desc="This string appears at the bottom of the “Site-suggested ads” settings page. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language.">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. Learn more in our <ph name="BEGIN_LINK1"><a href="$1" aria-description="$2" on-click="$3" id="$4" target="_blank"></ph>Privacy Policy<ph name="LINK_END1"></a></ph>.
</message>
<message name="IDS_SETTINGS_SITE_SUGGESTED_ADS_PAGE_DISCLAIMER_LINK_ARIA_DESCRIPTION" desc="Aria Description for 'Privacy Policy' hyperlink. This opens up Google's Privacy Policy page in a new tab.">
Opens Privacy Policy in a new tab
</message>
<!--Ad topics page - Ads API UX Enhancement-->
<message name="IDS_SETTINGS_AD_TOPICS_PAGE_DISCLAIMER" desc="This string appears at the bottom of the “Ad topics” settings page. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language.">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. Learn more in our <ph name="BEGIN_LINK1"><a href="$1" aria-description="$2" on-click="$3" id="$4" target="_blank"></ph>Privacy Policy<ph name="LINK_END1"></a></ph>.
</message>
<message name="IDS_SETTINGS_AD_TOPICS_PAGE_DISCLAIMER_CLANK" desc="This string appears at the bottom of the “Ad topics” settings page. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language." formatter_data="android_java">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. Learn more in our <ph name="BEGIN_LINK"><link></ph>Privacy Policy<ph name="END_LINK"></link></ph>.
</message>
<message name="IDS_SETTINGS_AD_TOPICS_PAGE_FOOTER_V2_DESKTOP" desc="This string tells the user how an ad may be tailored to them. “site-suggested ads” and “cookie settings” are hyperlinks. When clicked on, they lead to their respective settings pages.">
Whether an ad you see is personalized can depend on many things including this setting, <ph name="BEGIN_LINK1"><a href="$1" aria-description="$2" target="_blank"></ph>site-suggested ads<ph name="LINK_END1"></a></ph>, your <ph name="BEGIN_LINK2"><a href="$3" aria-description="$4" target="_blank"></ph>cookie settings<ph name="LINK_END2"></a></ph>, and if the site you're viewing personalizes ads.
</message>
<message name="IDS_SETTINGS_AD_TOPICS_PAGE_FOOTER_V2" desc="This string tells the user how an ad may be tailored to them. “site-suggested ads” and “cookie settings” are hyperlinks. When clicked on, they lead to their respective settings pages." formatter_data="android_java">
Whether an ad you see is personalized can depend on many things including this setting, <ph name="BEGIN_LINK_1"><link1></ph>site-suggested ads<ph name="END_LINK_1"></link1></ph>, your <ph name="BEGIN_LINK_2"><link2></ph>cookie settings<ph name="END_LINK_2"></link2></ph>, and if the site you're viewing personalizes ads.
</message>
<!--Ad measurement page - Ads API UX Enhancement-->
<message name="IDS_SETTINGS_AD_MEASUREMENT_PAGE_DISCLAIMER" desc="This string appears at the bottom of the “Ad measurement” settings page. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language.">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. Learn more in our <ph name="BEGIN_LINK1"><a href="$1" aria-description="$2" on-click="$3" id="$4" target="_blank"></ph>Privacy Policy<ph name="LINK_END1"></a></ph>.
</message>
<message name="IDS_SETTINGS_AD_MEASUREMENT_PAGE_DISCLAIMER_CLANK" desc="This string appears at the bottom of the “Ad measurement” settings page. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language." formatter_data="android_java">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. Learn more about how Google protects your data in our <ph name="BEGIN_LINK"><link></ph>Privacy Policy<ph name="END_LINK"></link></ph>.
</message>
<!--Ad Topics Content Parity - Privacy Guide Ad Topics Card-->
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_HEADING" desc="Header text on the Ad Topics card of the Privacy Guide.">
Review your ad topics setting
</message>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_TOGGLE_LABEL" desc="Text for the Ad topics toggle button on the Ad Topics card of the Privacy Guide." formatter_data="android_java">
Ad topics
</message>
<if expr="_google_chrome">
<then>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_WHEN_ON_BULLET1" desc="A part of the feature description of Ad Topics card in the Privacy Guide." formatter_data="android_java">
Chrome notes topics of interest based on your recent browsing history. For example, things like Sports, Apparel, and more
</message>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_WHEN_ON_BULLET3" desc="A part of the feature description of Ad Topics card in the Privacy Guide." formatter_data="android_java">
Chrome auto-deletes ad topics that are older than 4 weeks
</message>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_THINGS_TO_CONSIDER_BULLET1" desc="A part of the things to consider section of the Ad Topics card in the Privacy Guide." formatter_data="android_java">
You can see your ad topics in Chrome settings and block the ones you don't want shared with sites
</message>
</then>
<else>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_WHEN_ON_BULLET1" desc="A part of the feature description of Ad Topics card in the Privacy Guide." formatter_data="android_java">
Chromium notes topics of interest based on your recent browsing history. For example, things like Sports, Apparel, and more
</message>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_WHEN_ON_BULLET3" desc="A part of the feature description of Ad Topics card in the Privacy Guide." formatter_data="android_java">
Chromium auto-deletes ad topics that are older than 4 weeks
</message>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_THINGS_TO_CONSIDER_BULLET1" desc="A part of the things to consider section of the Ad Topics card in the Privacy Guide." formatter_data="android_java">
You can see your ad topics in Chromium settings and block the ones you don't want shared with sites
</message>
</else>
</if>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_WHEN_ON_BULLET2" desc="A part of the feature description of Ad Topics card in the Privacy Guide." formatter_data="android_java">
Websites and their advertising partners can use ad topics to personalize content for you. Compared to third-party cookies, ad topics helps to limit what sites can learn about you as you browse
</message>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_THINGS_TO_CONSIDER_BULLET2" desc="A part of the things to consider section of the Ad Topics card in the Privacy Guide." formatter_data="android_java">
Some sites may use your activity to personalize your experience for more than just ads. They may also store ad topics for longer than 4 weeks and may combine it with other information they already know about you
</message>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_THINGS_TO_CONSIDER_BULLET3_DESKTOP" desc="A part of the things to consider section of the Ad Topics card in the Privacy Guide.">
Google requires companies to state publicly that they won't use this data to track you across sites. Companies are responsible for letting you know how they use your data. <ph name="BEGIN_LINK1"><a href="$1" aria-description="$2" on-click="$3" id="$4" target="_blank"></ph>Learn more in our Privacy Policy<ph name="LINK_END1"></a></ph>.
</message>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_AD_TOPICS_THINGS_TO_CONSIDER_BULLET3_CLANK" desc="A part of the things to consider section of the Ad Topics card in the Privacy Guide." formatter_data="android_java">
Google requires companies to state publicly that they won't use this data to track you across sites. Companies are responsible for letting you know how they use your data. <ph name="BEGIN_LINK"><link></ph>Learn more in our Privacy Policy<ph name="END_LINK"></link></ph>.
</message>
<!--Ad Topics Content Parity - Ad Topics Settings-->
<message name="IDS_SETTINGS_AD_TOPICS_PAGE_TOGGLE_SUB_LABEL" desc="A description of the new Ad topics setting page. This sits under the toggle to turn on the topics API." formatter_data="android_java">
Topics are based on your recent browsing history and help limit what sites and their advertising partners can learn about you to show you personalized ads
</message>
<if expr="_google_chrome">
<then>
<message name="IDS_SETTINGS_AD_TOPICS_PAGE_ACTIVE_TOPICS_DESCRIPTION" desc="A description that appears beneath the 'Active topics' label." formatter_data="android_java">
Chrome auto-deletes ad topics that are older than 4 weeks
</message>
</then>
<else>
<message name="IDS_SETTINGS_AD_TOPICS_PAGE_ACTIVE_TOPICS_DESCRIPTION" desc="A description that appears beneath the 'Active topics' label." formatter_data="android_java">
Chromium auto-deletes ad topics that are older than 4 weeks
</message>
</else>
</if>
<message name="IDS_SETTINGS_AD_TOPICS_PAGE_DISCLAIMER_V2_DESKTOP" desc="This string appears at the bottom of the “Ad topics” settings page. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language.">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also store ad topics for longer than 4 weeks and combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. Learn more in our <ph name="BEGIN_LINK1"><a href="$1" aria-description="$2" on-click="$3" id="$4" target="_blank"></ph>Privacy Policy<ph name="LINK_END1"></a></ph>.
</message>
<message name="IDS_SETTINGS_AD_TOPICS_PAGE_DISCLAIMER_V2_CLANK" desc="This string appears at the bottom of the “Ad topics” settings page. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language." formatter_data="android_java">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also store ad topics for longer than 4 weeks and combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. Learn more in our <ph name="BEGIN_LINK"><link></ph>Privacy Policy<ph name="END_LINK"></link></ph>.
</message>
<!--Ad Topics Content Parity - Topics EEA Consent Dialog -->
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_DESCRIPTION_1_CONTENT_PARITY" desc="This string gives an overview of “ad topics”, an ad privacy feature. “Topics of interest” refers to topics that are relevant or interesting to the user based on their browsing activity online." formatter_data="android_java">
Ad topics limit what sites and their advertising partners can learn about you to show you personalized ads. Chrome can note topics of interest based on your recent browsing history. Later, a site you visit can ask Chrome for relevant topics to personalize the ads you see.
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_LEARN_MORE_BULLET_2_DESCRIPTION_CONTENT_PARITY" desc="This string appears at the bottom of the “Ad topics” settings page. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language.">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also store ad topics for longer than 4 weeks and combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. <ph name="BEGIN_LINK1"><a href="#" id="$1" aria-description="$2" on-click="$3"></ph>Learn more in our Privacy Policy<ph name="LINK_END1"></a></ph>
</message>
<message name="IDS_PRIVACY_SANDBOX_M1_CONSENT_LEARN_MORE_BULLET_2_DESCRIPTION_CONTENT_PARITY_CLANK" desc="This string appears at the bottom of the “Ad topics” settings page. “Sites” refers to websites that the user visits. The tone is informative. “Companies” refers to businesses or organizations that these websites belong to. This is intended to explain the possible user risks currently available with our evolving privacy-preserving technologies, in neutral language." formatter_data="android_java">
Google requires companies to state publicly that they won't use this data to track you across sites. Some sites may use your activity to personalize your experience for more than just ads. They may also store ad topics for longer than 4 weeks and combine it with other information they already know about you. Companies are responsible for letting you know how they use your data. <ph name="BEGIN_LINK"><link></ph>Learn more in our Privacy Policy<ph name="END_LINK"></link></ph>.
</message>
<!--Privacy Sandbox Privacy Policy-->
<message name="IDS_PRIVACY_SANDBOX_PRIVACY_POLICY_PAGE_TITLE" desc="Title for Google's Privacy Policy page." formatter_data="android_java">
Google Privacy Policy
</message>
<message name="IDS_PRIVACY_SANDBOX_PRIVACY_POLICY_BACK_BUTTON" desc="Content description for the Privacy Policy page back button." formatter_data="android_java">
Back
</message>
<!-- 3PC Settings -->
<message name="IDS_SETTINGS_COOKIES_BLOCK_THIRD_PARTY_SETTINGS_ALLOW_BULLET_ONE" desc="This text is for a bullet that provides detail about the first setting option. It describes the primary privacy and content impacts of selecting the “Allow third-party cookies” option." formatter_data="android_java">
Sites can use third-party cookies to personalize content and ads, and learn about actions you take on other sites
</message>
<message name="IDS_SETTINGS_COOKIES_BLOCK_THIRD_PARTY_SETTINGS_ALLOW_BULLET_TWO" desc="This text is for a bullet that provides detail about the first setting option. It describes the functional consequence of selecting the “Allow third-party cookies” option, especially in contrast to the “Block third-party cookies” option." formatter_data="android_java">
Site features that rely on third-party cookies should work as expected
</message>
<if expr="_google_chrome">
<then>
<message name="IDS_SETTINGS_COOKIES_BLOCK_THIRD_PARTY_SETTINGS_ALLOW_BULLET_THREE" desc="This text is for a bullet that provides detail about the first setting option. It describes the key new detail that now applies to this setting option." formatter_data="android_java">
When you're in Incognito mode, Chrome blocks sites from using third-party cookies
</message>
</then>
<else>
<message name="IDS_SETTINGS_COOKIES_BLOCK_THIRD_PARTY_SETTINGS_ALLOW_BULLET_THREE" desc="This text is for a bullet that provides detail about the first setting option. It describes the key new detail that now applies to this setting option." formatter_data="android_java">
When you're in Incognito mode, Chromium blocks sites from using third-party cookies
</message>
</else>
</if>
<message name="IDS_SETTINGS_COOKIES_BLOCK_THIRD_PARTY_SETTINGS_BLOCK_BULLET_ONE" desc="This text is for a bullet that provides detail about the second setting option. It describes the primary privacy and content impacts of selecting the “Block third-party cookies” option." formatter_data="android_java">
Sites can't use third-party cookies to personalize content and ads, and learn about actions you take on other sites, unless you allow related sites to access them
</message>
<message name="IDS_SETTINGS_COOKIES_BLOCK_THIRD_PARTY_SETTINGS_BLOCK_BULLET_TWO" desc="This text is for a bullet that provides detail about the second setting option. It describes the extent of how sites can use cookies when the “Block third-party cookies” option is selected." formatter_data="android_java">
Sites can still use cookies to see browsing activity on their own site
</message>
<message name="IDS_SETTINGS_COOKIES_BLOCK_THIRD_PARTY_SETTINGS_BLOCK_BULLET_THREE" desc="This text is for a bullet that provides detail about the second setting option. It describes the functional consequence of selecting the “Block third-party cookies” option, especially in contrast to the “Allow third-party cookies” option." formatter_data="android_java">
Site features that rely on third-party cookies may not work
</message>
<message name="IDS_SETTINGS_COOKIES_BLOCK_THIRD_PARTY_SETTINGS_BLOCK_SUBLABEL_RWS_ENABLED" desc="This text is for the description of the second setting option. It describes the primary point of contrast to the first setting option and features as a preview of details and sub-settings of the “Block third-party cookies” option. This string is dynamic and the text shown here is specific to when the “Allow related sites to see your activity in the group” switch is toggled to the On state." formatter_data="android_java">
Some features may not work. Related sites can still use third-party cookies.
</message>
<message name="IDS_SETTINGS_COOKIES_BLOCK_THIRD_PARTY_SETTINGS_ALLOW_SUBLABEL" desc="This text is for the description of the first setting option. It describes the primary point of contrast to the second setting option and features as a preview of details about the “Allow third-party cookies” option." formatter_data="android_java">
Sites that rely on third-party cookies should work as expected
</message>
<!-- Privacy Guide - Settings P1 -->
<message name="IDS_PRIVACY_GUIDE_COOKIE_SETTINGS_ALLOW_WHEN_ON_BULLET_ONE" desc="This text is for a bullet that provides detail about the first setting option. It describes the primary content and site experience impacts of selecting the “Allow third-party cookies” option.">
Sites can use third-party cookies to personalize content and ads
</message>
<message name="IDS_PRIVACY_GUIDE_COOKIE_SETTINGS_ALLOW_WHEN_ON_BULLET_TWO" desc="This text is for a bullet that provides detail about the first setting option. It describes the functional consequence of selecting the “Allow third-party cookies” option, especially in contrast to the “Block third-party cookies” option.">
Site features that rely on third-party cookies should work as expected
</message>
<message name="IDS_PRIVACY_GUIDE_COOKIE_SETTINGS_ALLOW_THINGS_TO_CONSIDER_BULLET_ONE" desc="This text is for a bullet that provides key considerations about the first setting option. It describes the primary privacy considerations of selecting the “Allow third-party cookies” option.">
Sites can use third-party cookies to learn about actions you take on other sites
</message>
<if expr="_google_chrome">
<then>
<message name="IDS_PRIVACY_GUIDE_COOKIE_SETTINGS_ALLOW_THINGS_TO_CONSIDER_BULLET_TWO" desc="This text is for a bullet that provides key considerations about the first setting option. It describes the key new detail that now applies to this setting option.">
When you're in Incognito mode, Chrome blocks sites from using third-party cookies
</message>
</then>
<else>
<message name="IDS_PRIVACY_GUIDE_COOKIE_SETTINGS_ALLOW_THINGS_TO_CONSIDER_BULLET_TWO" desc="This text is for a bullet that provides key considerations about the first setting option. It describes the key new detail that now applies to this setting option.">
When you're in Incognito mode, Chromium blocks sites from using third-party cookies
</message>
</else>
</if>
<message name="IDS_PRIVACY_GUIDE_COOKIE_SETTINGS_BLOCK_WHEN_ON_BULLET_ONE" desc="This text is for a bullet that provides detail about the second setting option. It describes the primary privacy impacts of selecting the “Block third-party cookies” option.">
Sites can't use third-party cookies to personalize content and ads, and learn about actions you take on other sites, unless you give related sites access to them
</message>
<message name="IDS_PRIVACY_GUIDE_COOKIE_SETTINGS_BLOCK_WHEN_ON_BULLET_TWO" desc="This text is for a bullet that provides detail about the second setting option. It describes the functional consequence of selecting the “Block third-party cookies” option, especially in contrast to the “Allow third-party cookies” option.">
Features on some sites may not work
</message>
<message name="IDS_PRIVACY_GUIDE_COOKIE_SETTINGS_BLOCK_THINGS_TO_CONSIDER_BULLET_ONE" desc="This text is for a bullet that provides key considerations about the second setting option. It informs the user of possible functional impacts and that there are means of addressing it.">
If a site doesn't work as expected, you can try temporarily allowing third-party cookies for a specific site you visit
</message>
<message name="IDS_PRIVACY_GUIDE_COOKIE_SETTINGS_BLOCK_THINGS_TO_CONSIDER_BULLET_TWO" desc="This text is for a bullet that provides key considerations about the second setting option. It informs the user of advanced settings they can use to modify the scope of impact of selecting the “Block third-party cookies” option.">
You can create exceptions in Settings to always allow specific sites to use third-party cookies
</message>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_COOKIES_CARD_BLOCK_TPC_ALLOW_SUBHEADER" desc="This text is for the label of the first setting option." formatter_data="android_java">
Allow third-party cookies
</message>
<message name="IDS_SETTINGS_PRIVACY_GUIDE_COOKIES_CARD_BLOCK_TPC_BLOCK_SUBHEADER" desc="This text is for the label of the second setting option." formatter_data="android_java">
Block third-party cookies
</message>
<message name="IDS_PRIVACY_GUIDE_COOKIES_HEADER" desc="This text is for the title header of the third-party cookie step in the Privacy Guide flow. It prompts the user to make a choice according to their privacy and browsing experience priorities." formatter_data="android_java">
Choose your third-party cookie preferences
</message>
<message name="IDS_PRIVACY_GUIDE_COOKIES_ALLOW_DESCRIPTION" desc="This text is for the description of the first setting option. It describes the primary site experience and privacy impacts of selecting the “Allow third-party cookies” option." formatter_data="android_java">
Sites can use third-party cookies to personalize content and ads, and learn about actions you take on other sites
</message>
<message name="IDS_PRIVACY_GUIDE_COOKIES_BLOCK_DESCRIPTION" desc="This text is for the description of the second setting option. It describes the primary site experience and privacy impacts of selecting the “Block third-party cookies” option." formatter_data="android_java">
Sites can't use third-party cookies to personalize content and ads, and learn about actions you take on other sites, unless you allow related sites to access them. Some site features may not work as expected.
</message>
<!-- A11y Labels - Settings P1 -->
<message name="IDS_SETTINGS_ALLOW_THIRD_PARTY_COOKIES_EXPAND_A11Y_LABEL" desc="This text is read by screenreaders and helps users find more info about this choice.">
More about the Allow third-party cookies option
</message>
<message name="IDS_SETTINGS_BLOCK_THIRD_PARTY_COOKIES_EXPAND_A11Y_LABEL" desc="This text is read by screenreaders and helps users find more info about this choice.">
More about the Block third-party cookies option
</message>
<!-- NTP - Settings P1 -->
<message name="IDS_INCOGNITO_NTP_BLOCK_THIRD_PARTY_COOKIES_HEADER" desc="This text is for the header of the emphasized detail, “Third-party cookies are blocked” section." formatter_data="android_java">
Third-party cookies are blocked
</message>
<message name="IDS_INCOGNITO_NTP_BLOCK_THIRD_PARTY_COOKIES_DESCRIPTION_DESKTOP" desc="This text is for the body of the “Third-party cookies are blocked” section. It specifies the scope of blocking third-party cookies and informs the user of possible functional impacts, a means of addressing it, and a link to learn how to do so.">
When you're in Incognito mode, sites can't use third-party cookies. If a site that relies on these cookies isn't working, you can <ph name="START_LINK"><a target="_blank" href="$1" aria-description="$2"></ph>try giving that site temporary access to third-party cookies<ph name="END_LINK"></a></ph>.
</message>
<message name="IDS_INCOGNITO_NTP_BLOCK_THIRD_PARTY_COOKIES_DESCRIPTION_ANDROID" desc="This text is for the body of the “Third-party cookies are blocked” section. It specifies the scope of blocking third-party cookies and informs the user of possible functional impacts, a means of addressing it, and a link to learn how to do so." formatter_data="android_java">
When you're in Incognito mode, sites can't use third-party cookies. If a site that relies on these cookies isn't working, you can <ph name="BEGIN_LINK"><link></ph>try giving that site temporary access to third-party cookies<ph name="END_LINK"></link></ph>.
</message>
<!-- RWS - PageInfo -->
<message name="IDS_PAGE_INFO_RWS_V2_BUTTON_TITLE" desc="Title for a button that goes to the related sites settings page where users can manage and delete their related sites data" formatter_data="android_java">
Manage related sites data
</message>
<message name="IDS_PAGE_INFO_RWS_V2_BUTTON_SUBTITLE" desc="Describes how related website sets are relevant to the current website the user is on and which website owns the set that the current website is a member of">
This site belongs to a group of sites, defined by <ph name="SET_OWNER">$1<ex>gannett.com</ex></ph>, that can share your activity across the group to help sites work as expected.
</message>
<message name="IDS_PAGE_INFO_RWS_V2_BUTTON_SUBTITLE_ANDROID" desc="Describes how related website sets are relevant to the current website the user is on and which website owns the set that the current website is a member of" formatter_data="android_java">
This site belongs to a group of sites, defined by <ph name="SET_OWNER">%1$s<ex>gannett.com</ex></ph>, that can share your activity across the group to help sites work as expected.
</message>
<message name="IDS_PAGE_INFO_RWS_V2_BUTTON_TOOLTIP" desc="Tooltip for the related website sets settings button. The button will open the settings page in a new tab.">
Manage related sites data in a new tab
</message>
<!-- RWS - All Sites -->
<message name="IDS_ALL_SITES_RWS_LABEL" desc="A specific indication that this website has a list of related websites associated with it." formatter_data="android_java">
Has related sites
</message>
<message name="IDS_ALL_SITES_SHOW_RWS_BUTTON" desc="Title for a button that allows the user to go to the related website sets settings page to view all of the related sites associated with this website.">
Show related sites
</message>
<message name="IDS_ALL_SITES_RWS_FILTER_VIEW_TITLE" desc="Header for the related website sets settings page view. Includes the URL for the website that owns the related website set.">
Related sites defined by <ph name="RWS_OWNER">$1<ex>google.com</ex></ph>
</message>
<message name="IDS_ALL_SITES_RWS_FILTER_VIEW_DESCRIPTION" desc="Description explaining what related website sets are and how they relate to third-party cookies. Includes a Learn More link that takes the user to a Help Center article about managing settings for third-party cookies and related website sets.">
Related sites can share third-party cookies with each other to help sites work as expected, such as keeping you signed in or remembering your site settings. Sites are responsible for explaining why they need access to this data. Learn more about <ph name="START_LINK"><a target="_blank" href="$1" aria-description="$2"></ph>related sites and third-party cookies<ph name="END_LINK"></a></ph>
</message>
<message name="IDS_ALL_SITES_RWS_FILTER_VIEW_STORAGE_DESCRIPTION" desc="Describes how much storage is being used by all sites in the displayed list of related websites.">
Total storage used by sites in the list: <ph name="TOTAL_USAGE">$1<ex>8 GB</ex></ph>
</message>
<message name="IDS_ALL_SITES_RWS_DELETE_DATA_BUTTON_LABEL" desc="Label of a button to delete all site data for sites in a related website set.">
Delete data
</message>
<message name="IDS_ALL_SITES_RWS_DELETE_DATA_DIALOG_TITLE" desc="Title of the dialog that warns about deleting all site data for sites in a related website set.">
Delete data?
</message>
<!-- RWS - Site Settings -->
<message name="IDS_SITE_SETTINGS_RWS_DESCRIPTION_ANDROID" desc="Description explaining what related website sets are and how they relate to third-party cookies. Includes a Learn More link that takes the user to a Help Center article about managing settings for third-party cookies and related website sets." formatter_data="android_java">
Related sites can share third-party cookies with each other to help sites work as expected, such as keeping you signed in or remembering your site settings. Sites are responsible for explaining why they need access to this data. <ph name="BEGIN_LINK"><link></ph>Learn more<ph name="END_LINK"></link></ph>
</message>
<message name="IDS_SITE_SETTINGS_RWS_DELETE_BUTTON_LABEL" desc="Title for a button that allows the user to delete all stored data for sites in the related website set associated with this website." formatter_data="android_java">
Delete all data
</message>
<message name="IDS_SITE_SETTINGS_DELETE_RWS_STORAGE_CONFIRMATION_ANDROID" desc="Text for the dialog that warns about deleting storage used by a site and its related sites." formatter_data="android_java">
This action will delete all data and cookies stored by <ph name="SITE_NAME">%1$s<ex>www.example.com</ex></ph> and related sites
</message>
<message name="IDS_SITE_SETTINGS_DELETE_RWS_STORAGE_SIGN_OUT" desc="Text for the dialog that warns about potentially being signed out of sites in the related website set." formatter_data="android_java">
You'll be signed out of these sites
</message>
<message name="IDS_SITE_SETTINGS_DELETE_RWS_STORAGE_DIALOG_TITLE" desc="Title for the dialog that prompts the user to confirm if they would like to delete all data for sites in the related website set." formatter_data="android_java">
Delete all data?
</message>
<!-- ACT - Incognito Tracking Protections Settings Page -->
<!-- TODO(crbug.com/408036586): Mark translateable after content is finalized -->
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_PAGE_TITLE" desc="" translateable="false" formatter_data="android_java">
Incognito tracking protections
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_PAGE_ENTRYPOINT_DESCRIPTION" desc="" translateable="false" formatter_data="android_java">
Manage information sites can use to learn about you in Incognito
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_HEADER" desc="" formatter_data="android_java" translateable="false">
Tracking protections
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_DESCRIPTION_DESKTOP" desc="" translateable="false">
Sites you visit may embed content from other sites (like images, ads, and text) which can be used to learn about you. Learn more about managing <ph name="START_LINK"><a target="_blank" href="$1" aria-label="$2" aria-description="$3"></ph>Incognito tracking protections<ph name="END_LINK"></a></ph>.
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_DESCRIPTION_DESKTOP_A11Y_LABEL" desc="" translateable="false">
Learn more about managing Incognito tracking protections
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_DESCRIPTION_ANDROID" desc="" formatter_data="android_java" translateable="false">
Sites you visit may embed content from other sites (like images, ads, and text) which can be used to learn about you. Learn more about managing <ph name="BEGIN_LINK"><link></ph> Incongito tracking protections<ph name="END_LINK"></link></ph>.
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_BLOCK_3PCS_TOGGLE_LABEL" desc="" formatter_data="android_java" translateable="false">
Block third-party cookies
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_IP_PROTECTION_TOGGLE_LABEL" desc="" formatter_data="android_java" translateable="false">
Protect your IP address
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_IP_PROTECTION_TOGGLE_SUBLABEL" desc="" formatter_data="android_java" translateable="false">
Limit access to your IP address
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_IP_PROTECTION_TOGGLE_SUBLABEL_ON" desc="" formatter_data="android_java" translateable="false">
Limit access to your IP address. This setting is on.
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_IP_PROTECTION_TOGGLE_SUBLABEL_OFF" desc="" formatter_data="android_java" translateable="false">
Limit access to your IP address. This setting is off.
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_IP_PROTECTION_THINGS_TO_CONSIDER_BULLET_ONE" desc="" formatter_data="android_java" translateable="false">
Applies to embedded sites, not the site you're directly visiting
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_IP_PROTECTION_THINGS_TO_CONSIDER_BULLET_THREE" desc="" formatter_data="android_java" translateable="false">
Google's privacy servers can see your IP address but not your browsing destination when protecting your IP address
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_FINGERPRINTING_PROTECTION_TOGGLE_LABEL" desc="" formatter_data="android_java" translateable="false">
Block tracking scripts
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_FINGERPRINTING_PROTECTION_TOGGLE_SUBLABEL" desc="" formatter_data="android_java" translateable="false">
Limit access to device and browser data
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_FINGERPRINTING_PROTECTION_TOGGLE_SUBLABEL_ON" desc="" formatter_data="android_java" translateable="false">
Limit access to device and browser data. This setting is on.
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_FINGERPRINTING_PROTECTION_TOGGLE_SUBLABEL_OFF" desc="" formatter_data="android_java" translateable="false">
Limit access to device and browser data. This setting is off.
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_FINGERPRINTING_PROTECTION_THINGS_TO_CONSIDER" desc="" formatter_data="android_java" translateable="false">
Applies to embedded sites, not the site you're directly visiting
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_WHEN_ON" desc="" formatter_data="android_java" translateable="false">
When on
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_THINGS_TO_CONSIDER" desc="" formatter_data="android_java" translateable="false">
Things to consider
</message>
<if expr="_google_chrome">
<then>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_PAGE_DESCRIPTION" desc="" formatter_data="android_java" translateable="false">
When you browse in Incognito, Chrome won't save your browsing history, cookies and site data, and the information you enter in forms. Incognito also provides features that can limit the information available to embedded sites.
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_BLOCK_3PCS_TOGGLE_SUBLABEL" desc="" formatter_data="android_java" translateable="false">
Chrome blocks sites from using third-party cookies in Incognito
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_IP_PROTECTION_WHEN_ON" desc="" formatter_data="android_java" translateable="false">
Chrome will try to protect your IP address from embedded sites that may be trying to learn about you
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_IP_PROTECTION_THINGS_TO_CONSIDER_BULLET_TWO" desc="" formatter_data="android_java" translateable="false">
Only available when Incognito is opened from a signed-in Chrome tab
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_FINGERPRINTING_PROTECTION_WHEN_ON" desc="" formatter_data="android_java" translateable="false">
Chrome will try to limit device and browser data, like installed fonts or your time zone, from embedded sites that may be trying to learn about you
</message>
<message name="IDS_INCOGNITO_NTP_INCOGNITO_TRACKING_PROTECTIONS_LINK_A11Y_DESCRIPTION" desc="" translateable="false">
Opens in a regular Chrome window
</message>
</then>
<else>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_PAGE_DESCRIPTION" desc="" formatter_data="android_java" translateable="false">
When you browse in Incognito, Chromium won't save your browsing history, cookies and site data, and the information you enter in forms. Incognito also provides features that can limit the information available to embedded sites.
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_BLOCK_3PCS_TOGGLE_SUBLABEL" desc="" formatter_data="android_java" translateable="false">
Chromium blocks sites from using third-party cookies in Incognito
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_IP_PROTECTION_WHEN_ON" desc="" formatter_data="android_java" translateable="false">
Chromium will try to protect your IP address from embedded sites that may be trying to learn about you
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_IP_PROTECTION_THINGS_TO_CONSIDER_BULLET_TWO" desc="" formatter_data="android_java" translateable="false">
Only available when Incognito is opened from a signed-in Chromium tab
</message>
<message name="IDS_INCOGNITO_TRACKING_PROTECTIONS_FINGERPRINTING_PROTECTION_WHEN_ON" desc="" formatter_data="android_java" translateable="false">
Chromium will try to limit device and browser data, like installed fonts or your time zone, from embedded sites that may be trying to learn about you
</message>
<message name="IDS_INCOGNITO_NTP_INCOGNITO_TRACKING_PROTECTIONS_LINK_A11Y_DESCRIPTION" desc="" translateable="false">
Opens in a regular Chromium window
</message>
</else>
</if>
<!-- ACT - Incognito Tracking Protections Incognito NTP -->
<!-- TODO(crbug.com/408036586): Mark translateable after content is finalized -->
<message name="IDS_INCOGNITO_NTP_INCOGNITO_TRACKING_PROTECTIONS_HEADER" desc="" formatter_data="android_java" translateable="false" >
Tracking protections in Incognito
</message>
<message name="IDS_INCOGNITO_NTP_INCOGNITO_TRACKING_PROTECTIONS_DESCRIPTION_ANDROID" desc="" formatter_data="android_java" translateable="false" >
Third-party cookies are blocked. Incognito also provides features that can limit the information available to companies whose content is embedded on a site you visit. You can manage Incognito tracking protections in <ph name="BEGIN_LINK"><link></ph>Settings<ph name="END_LINK"></link></ph>.
</message>
<message name="IDS_INCOGNITO_NTP_INCOGNITO_TRACKING_PROTECTIONS_DESCRIPTION_DESKTOP" desc="" translateable="false">
Third-party cookies are blocked. Incognito also provides features that can limit the information available to companies whose content is embedded on a site you visit. You can manage Incognito tracking protections in <ph name="START_LINK"><a href="$1" aria-label="$2" aria-description="$3"></ph>Settings<ph name="END_LINK"></a></ph>.
</message>
<message name="IDS_INCOGNITO_NTP_INCOGNITO_TRACKING_PROTECTIONS_LINK_A11Y_LABEL" desc="" translateable="false">
Settings for Incognito tracking protections
</message>
</messages>
</release>
</grit>
|