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
|
<?xml version="1.0" encoding="utf-8"?>
<grit latest_public_release="0" current_release="1"
output_all_resource_defines="false" source_lang_id="en" enc_check="möl">
<outputs>
<output filename="values-af/browser_ui_strings.xml" lang="af" type="android" />
<output filename="values-am/browser_ui_strings.xml" lang="am" type="android" />
<output filename="values-ar/browser_ui_strings.xml" lang="ar" type="android" />
<output filename="values-as/browser_ui_strings.xml" lang="as" type="android" />
<output filename="values-az/browser_ui_strings.xml" lang="az" type="android" />
<output filename="values-be/browser_ui_strings.xml" lang="be" type="android" />
<output filename="values-bg/browser_ui_strings.xml" lang="bg" type="android" />
<output filename="values-bn/browser_ui_strings.xml" lang="bn" type="android" />
<output filename="values-bs/browser_ui_strings.xml" lang="bs" type="android" />
<output filename="values-ca/browser_ui_strings.xml" lang="ca" type="android" />
<output filename="values-cs/browser_ui_strings.xml" lang="cs" type="android" />
<output filename="values-da/browser_ui_strings.xml" lang="da" type="android" />
<output filename="values-de/browser_ui_strings.xml" lang="de" type="android" />
<output filename="values-el/browser_ui_strings.xml" lang="el" type="android" />
<output filename="values/browser_ui_strings.xml" lang="en" type="android" />
<output filename="values-en-rGB/browser_ui_strings.xml" lang="en-GB" type="android" />
<output filename="values-es/browser_ui_strings.xml" lang="es" type="android" />
<output filename="values-es-rUS/browser_ui_strings.xml" lang="es-419" type="android" />
<output filename="values-et/browser_ui_strings.xml" lang="et" type="android" />
<output filename="values-eu/browser_ui_strings.xml" lang="eu" type="android" />
<output filename="values-fa/browser_ui_strings.xml" lang="fa" type="android" />
<output filename="values-fi/browser_ui_strings.xml" lang="fi" type="android" />
<output filename="values-tl/browser_ui_strings.xml" lang="fil" type="android" />
<output filename="values-fr/browser_ui_strings.xml" lang="fr" type="android" />
<output filename="values-fr-rCA/browser_ui_strings.xml" lang="fr-CA" type="android" />
<output filename="values-gl/browser_ui_strings.xml" lang="gl" type="android" />
<output filename="values-gu/browser_ui_strings.xml" lang="gu" type="android" />
<output filename="values-hi/browser_ui_strings.xml" lang="hi" type="android" />
<output filename="values-hr/browser_ui_strings.xml" lang="hr" type="android" />
<output filename="values-hu/browser_ui_strings.xml" lang="hu" type="android" />
<output filename="values-hy/browser_ui_strings.xml" lang="hy" type="android" />
<output filename="values-in/browser_ui_strings.xml" lang="id" type="android" />
<output filename="values-is/browser_ui_strings.xml" lang="is" type="android" />
<output filename="values-it/browser_ui_strings.xml" lang="it" type="android" />
<output filename="values-iw/browser_ui_strings.xml" lang="iw" type="android" />
<output filename="values-ja/browser_ui_strings.xml" lang="ja" type="android" />
<output filename="values-ka/browser_ui_strings.xml" lang="ka" type="android" />
<output filename="values-kk/browser_ui_strings.xml" lang="kk" type="android" />
<output filename="values-km/browser_ui_strings.xml" lang="km" type="android" />
<output filename="values-kn/browser_ui_strings.xml" lang="kn" type="android" />
<output filename="values-ko/browser_ui_strings.xml" lang="ko" type="android" />
<output filename="values-ky/browser_ui_strings.xml" lang="ky" type="android" />
<output filename="values-lo/browser_ui_strings.xml" lang="lo" type="android" />
<output filename="values-lt/browser_ui_strings.xml" lang="lt" type="android" />
<output filename="values-lv/browser_ui_strings.xml" lang="lv" type="android" />
<output filename="values-mk/browser_ui_strings.xml" lang="mk" type="android" />
<output filename="values-ml/browser_ui_strings.xml" lang="ml" type="android" />
<output filename="values-mn/browser_ui_strings.xml" lang="mn" type="android" />
<output filename="values-mr/browser_ui_strings.xml" lang="mr" type="android" />
<output filename="values-ms/browser_ui_strings.xml" lang="ms" type="android" />
<output filename="values-my/browser_ui_strings.xml" lang="my" type="android" />
<output filename="values-ne/browser_ui_strings.xml" lang="ne" type="android" />
<output filename="values-nl/browser_ui_strings.xml" lang="nl" type="android" />
<output filename="values-nb/browser_ui_strings.xml" lang="no" type="android" />
<output filename="values-or/browser_ui_strings.xml" lang="or" type="android" />
<output filename="values-pa/browser_ui_strings.xml" lang="pa" type="android" />
<output filename="values-pl/browser_ui_strings.xml" lang="pl" type="android" />
<output filename="values-pt-rBR/browser_ui_strings.xml" lang="pt-BR" type="android" />
<output filename="values-pt-rPT/browser_ui_strings.xml" lang="pt-PT" type="android" />
<output filename="values-ro/browser_ui_strings.xml" lang="ro" type="android" />
<output filename="values-ru/browser_ui_strings.xml" lang="ru" type="android" />
<output filename="values-si/browser_ui_strings.xml" lang="si" type="android" />
<output filename="values-sk/browser_ui_strings.xml" lang="sk" type="android" />
<output filename="values-sl/browser_ui_strings.xml" lang="sl" type="android" />
<output filename="values-sq/browser_ui_strings.xml" lang="sq" type="android" />
<output filename="values-sr/browser_ui_strings.xml" lang="sr" type="android" />
<output filename="values-b+sr+Latn/browser_ui_strings.xml" lang="sr-Latn" type="android" />
<output filename="values-sv/browser_ui_strings.xml" lang="sv" type="android" />
<output filename="values-sw/browser_ui_strings.xml" lang="sw" type="android" />
<output filename="values-ta/browser_ui_strings.xml" lang="ta" type="android" />
<output filename="values-te/browser_ui_strings.xml" lang="te" type="android" />
<output filename="values-th/browser_ui_strings.xml" lang="th" type="android" />
<output filename="values-tr/browser_ui_strings.xml" lang="tr" type="android" />
<output filename="values-uk/browser_ui_strings.xml" lang="uk" type="android" />
<output filename="values-ur/browser_ui_strings.xml" lang="ur" type="android" />
<output filename="values-uz/browser_ui_strings.xml" lang="uz" type="android" />
<output filename="values-vi/browser_ui_strings.xml" lang="vi" type="android" />
<output filename="values-zh-rCN/browser_ui_strings.xml" lang="zh-CN" type="android" />
<output filename="values-zh-rHK/browser_ui_strings.xml" lang="zh-HK" type="android" />
<output filename="values-zh-rTW/browser_ui_strings.xml" lang="zh-TW" type="android" />
<output filename="values-zu/browser_ui_strings.xml" lang="zu" type="android" />
<!-- Pseudolocales -->
<output filename="values-ar-rXB/browser_ui_strings.xml" lang="ar-XB" type="android" />
<output filename="values-en-rXA/browser_ui_strings.xml" lang="en-XA" type="android" />
</outputs>
<translations>
<file path="translations/browser_ui_strings_af.xtb" lang="af" />
<file path="translations/browser_ui_strings_am.xtb" lang="am" />
<file path="translations/browser_ui_strings_ar.xtb" lang="ar" />
<file path="translations/browser_ui_strings_as.xtb" lang="as" />
<file path="translations/browser_ui_strings_az.xtb" lang="az" />
<file path="translations/browser_ui_strings_be.xtb" lang="be" />
<file path="translations/browser_ui_strings_bg.xtb" lang="bg" />
<file path="translations/browser_ui_strings_bn.xtb" lang="bn" />
<file path="translations/browser_ui_strings_bs.xtb" lang="bs" />
<file path="translations/browser_ui_strings_ca.xtb" lang="ca" />
<file path="translations/browser_ui_strings_cs.xtb" lang="cs" />
<file path="translations/browser_ui_strings_cy.xtb" lang="cy" />
<file path="translations/browser_ui_strings_da.xtb" lang="da" />
<file path="translations/browser_ui_strings_de.xtb" lang="de" />
<file path="translations/browser_ui_strings_el.xtb" lang="el" />
<file path="translations/browser_ui_strings_en-GB.xtb" lang="en-GB" />
<file path="translations/browser_ui_strings_es.xtb" lang="es" />
<file path="translations/browser_ui_strings_es-419.xtb" lang="es-419" />
<file path="translations/browser_ui_strings_et.xtb" lang="et" />
<file path="translations/browser_ui_strings_eu.xtb" lang="eu" />
<file path="translations/browser_ui_strings_fa.xtb" lang="fa" />
<file path="translations/browser_ui_strings_fi.xtb" lang="fi" />
<file path="translations/browser_ui_strings_fil.xtb" lang="fil" />
<file path="translations/browser_ui_strings_fr.xtb" lang="fr" />
<file path="translations/browser_ui_strings_fr-CA.xtb" lang="fr-CA" />
<file path="translations/browser_ui_strings_gl.xtb" lang="gl" />
<file path="translations/browser_ui_strings_gu.xtb" lang="gu" />
<file path="translations/browser_ui_strings_hi.xtb" lang="hi" />
<file path="translations/browser_ui_strings_hr.xtb" lang="hr" />
<file path="translations/browser_ui_strings_hu.xtb" lang="hu" />
<file path="translations/browser_ui_strings_hy.xtb" lang="hy" />
<file path="translations/browser_ui_strings_id.xtb" lang="id" />
<file path="translations/browser_ui_strings_is.xtb" lang="is" />
<file path="translations/browser_ui_strings_it.xtb" lang="it" />
<file path="translations/browser_ui_strings_iw.xtb" lang="iw" />
<file path="translations/browser_ui_strings_ja.xtb" lang="ja" />
<file path="translations/browser_ui_strings_ka.xtb" lang="ka" />
<file path="translations/browser_ui_strings_kk.xtb" lang="kk" />
<file path="translations/browser_ui_strings_km.xtb" lang="km" />
<file path="translations/browser_ui_strings_kn.xtb" lang="kn" />
<file path="translations/browser_ui_strings_ko.xtb" lang="ko" />
<file path="translations/browser_ui_strings_ky.xtb" lang="ky" />
<file path="translations/browser_ui_strings_lo.xtb" lang="lo" />
<file path="translations/browser_ui_strings_lt.xtb" lang="lt" />
<file path="translations/browser_ui_strings_lv.xtb" lang="lv" />
<file path="translations/browser_ui_strings_mk.xtb" lang="mk" />
<file path="translations/browser_ui_strings_ml.xtb" lang="ml" />
<file path="translations/browser_ui_strings_mn.xtb" lang="mn" />
<file path="translations/browser_ui_strings_mr.xtb" lang="mr" />
<file path="translations/browser_ui_strings_ms.xtb" lang="ms" />
<file path="translations/browser_ui_strings_my.xtb" lang="my" />
<file path="translations/browser_ui_strings_ne.xtb" lang="ne" />
<file path="translations/browser_ui_strings_nl.xtb" lang="nl" />
<file path="translations/browser_ui_strings_no.xtb" lang="no" />
<file path="translations/browser_ui_strings_or.xtb" lang="or" />
<file path="translations/browser_ui_strings_pa.xtb" lang="pa" />
<file path="translations/browser_ui_strings_pl.xtb" lang="pl" />
<file path="translations/browser_ui_strings_pt-BR.xtb" lang="pt-BR" />
<file path="translations/browser_ui_strings_pt-PT.xtb" lang="pt-PT" />
<file path="translations/browser_ui_strings_ro.xtb" lang="ro" />
<file path="translations/browser_ui_strings_ru.xtb" lang="ru" />
<file path="translations/browser_ui_strings_si.xtb" lang="si" />
<file path="translations/browser_ui_strings_sk.xtb" lang="sk" />
<file path="translations/browser_ui_strings_sl.xtb" lang="sl" />
<file path="translations/browser_ui_strings_sq.xtb" lang="sq" />
<file path="translations/browser_ui_strings_sr.xtb" lang="sr" />
<file path="translations/browser_ui_strings_sr-Latn.xtb" lang="sr-Latn" />
<file path="translations/browser_ui_strings_sv.xtb" lang="sv" />
<file path="translations/browser_ui_strings_sw.xtb" lang="sw" />
<file path="translations/browser_ui_strings_ta.xtb" lang="ta" />
<file path="translations/browser_ui_strings_te.xtb" lang="te" />
<file path="translations/browser_ui_strings_th.xtb" lang="th" />
<file path="translations/browser_ui_strings_tr.xtb" lang="tr" />
<file path="translations/browser_ui_strings_uk.xtb" lang="uk" />
<file path="translations/browser_ui_strings_ur.xtb" lang="ur" />
<file path="translations/browser_ui_strings_uz.xtb" lang="uz" />
<file path="translations/browser_ui_strings_vi.xtb" lang="vi" />
<file path="translations/browser_ui_strings_zh-CN.xtb" lang="zh-CN" />
<file path="translations/browser_ui_strings_zh-HK.xtb" lang="zh-HK" />
<file path="translations/browser_ui_strings_zh-TW.xtb" lang="zh-TW" />
<file path="translations/browser_ui_strings_zu.xtb" lang="zu" />
</translations>
<release seq="1">
<messages fallback_to_english="true">
<part file="site_settings.grdp" />
<message name="IDS_GOT_IT" desc="Button for the user to accept a disclosure/message" formatter_data="android_java">
Got it
</message>
<message name="IDS_OK" desc="Label for a confirm button. Used in multiple contexts. [CHAR_LIMIT=20]">
OK
</message>
<message name="IDS_OK_GOT_IT" desc="Label of a button by which the user confirms that they read and understood the information or instructions. Used in multiple contexts. [CHAR_LIMIT=20]">
OK, got it
</message>
<message name="IDS_YES" desc="Label for a button where the user accepts a disclosure/message. Used in multiple contexts." formatter_data="android_java">
Yes
</message>
<message name="IDS_CANCEL" desc="Label for a cancel button. Used in multiple contexts. [CHAR_LIMIT=20]">
Cancel
</message>
<message name="IDS_SAVE" desc="Label for a button to save a change. Used in multiple contexts. [CHAR_LIMIT=20]">
Save
</message>
<message name="IDS_DETAILS_LINK" desc="In 1) Settings > Clean up computer (desktop), a link to open details of incompatible applications. In 2) Settings > Lite mode (mobile), static title for data usage breakdown." meaning="Short for 'view details'. Link; static title.">
Details
</message>
<message name="IDS_DONE" desc="Label for a button to save a change or finish editing data. Used in multiple contexts. [CHAR_LIMIT=20]">
Done
</message>
<message name="IDS_DELETE" desc="Label for a delete button. Used in multiple contexts. [CHAR_LIMIT=20]">
Delete
</message>
<message name="IDS_DISMISS" desc="Label for a dismiss button. Used in multiple contexts. [CHAR_LIMIT=20]">
Dismiss
</message>
<message name="IDS_REMOVE" desc="Label for a button to remove an item (e.g. a bookmark) from a list. [CHAR_LIMIT=20]">
Remove
</message>
<message name="IDS_RESET" desc="Label for a button to reset information you are editing to a default.">
Reset
</message>
<message name="IDS_TITLE" desc="Text indicating the title of a button or a textfield. Ued in multiple contexts. [CHAR_LIMIT=32]">
Title
</message>
<message name="IDS_TEXT_ON" desc="Text indicating that an option is turned on. [CHAR_LIMIT=20]">
On
</message>
<message name="IDS_TEXT_OFF" desc="Text indicating that an option is turned off. [CHAR_LIMIT=20]">
Off
</message>
<message name="IDS_LEARN_MORE" desc="Generic label for menu item to learn more about a feature. [CHAR_LIMIT=32]">
Learn more
</message>
<message name="IDS_MORE" desc="Generic label for a button to show more items or options. [CHAR_LIMIT=20]">
More
</message>
<message name="IDS_CLOSE" desc="Content description for a button to close a dialog or popup" >
Close
</message>
<message name="IDS_RELOAD" desc="Label for a button that reloads the page. Used in multiple contexts. [CHAR_LIMIT=20]">
Reload
</message>
<message name="IDS_REFRESH" desc="Tooltip on Android for the button to refresh the current web page. [CHAR_LIMIT=27]">
Refresh
</message>
<message name="IDS_NO_THANKS" desc="Generic label to say no thanks for a feature. [CHAR_LIMIT=32]">
No thanks
</message>
<message name="IDS_NEXT" desc="Generic label for a button to advance to the next item. [CHAR_LIMIT=20]">
Next
</message>
<message name="IDS_CONTINUE_BUTTON" desc="Generic label for a button to continue to the next screen. Used in multiple contexts. [CHAR_LIMIT=20]">
Continue
</message>
<message name="IDS_SUBMIT" desc="Generic label for a button to submit data. Used in multiple contexts. [CHAR_LIMIT=20]">
Submit
</message>
<message name="IDS_UNDO" desc="Generic label for a button to undo the previous action.">
Undo
</message>
<message name="IDS_HELP" desc="Generic label for a button that displays help for the current screen.">
Help
</message>
<message name="IDS_TODAY" desc="Generic Label saying the date is today.">
Today
</message>
<message name="IDS_YESTERDAY" desc="Generic Label saying the date is yesterday.">
Yesterday
</message>
<message name="IDS_SELECT" desc="Prompt for user to select something. [CHAR_LIMIT=20]">
Select
</message>
<message name="IDS_ADD" desc="Prompt for the user to add something, like a new address. [CHAR_LIMIT=20]">
Add
</message>
<message name="IDS_SHARE" desc="Content description for a button to share item(s). [CHAR_LIMIT=20]">
Share
</message>
<message name="IDS_SEARCH" desc="The label for a search button.">
Search
</message>
<message name="IDS_SETTINGS" desc="Title for Chrome's Settings.">
Settings
</message>
<message name="IDS_SHOW_INFO" desc="The label for a info button to show info.">
Show Info
</message>
<message name="IDS_HIDE_INFO" desc="The label for a info button to hide info.">
Hide Info
</message>
<message name="IDS_COPY_LINK" desc="The label for a menu item to copy a link. [CHAR_LIMIT=30]">
Copy link
</message>
<message name="IDS_TRY_AGAIN" desc="The label for a button allowing the user to try an action again. [CHAR_LIMIT=20]">
Try again
</message>
<message name="IDS_BACK" desc="Label for a back button to return to a previous UI state or screen. Used in multiple contexts. [CHAR_LIMIT=20]">
Back
</message>
<message name="IDS_CONFIRM" desc="Label for a confirm button. Used in multiple contexts. [CHAR_LIMIT=20]">
Confirm
</message>
<message name="IDS_SHOW" desc="Label for a show button. Used in multiple contexts. [CHAR_LIMIT=20]">
Show
</message>
<message name="IDS_MENU_ITEM_MOVE_UP" desc="Option in item menu. User can click the 'Move up' option to move the item up by one position in its list. [CHAR_LIMIT=24]">
Move up
</message>
<message name="IDS_MENU_ITEM_MOVE_DOWN" desc="Option in item menu. User can click the 'Move down' option to move the item down by one position in its list. [CHAR_LIMIT=24]">
Move down
</message>
<message name="IDS_MENU_ITEM_MOVE_TO_TOP" desc="Option in item menu. User can click the 'Move to top' option to move the item up to the top of its list. [CHAR_LIMIT=24]">
Move to top
</message>
<message name="IDS_JUST_ONCE" desc="Generic label for a user to select an option for just once">
Just once
</message>
<message name="IDS_DONT_ASK_AGAIN" desc="Generic label for a user to select to not be asked again">
Don’t ask again
</message>
<message name="IDS_ALWAYS" desc="Generic label for a user to select an always option">
Always
</message>
<message name="IDS_LATEST" desc="Generic label for a user to select a Latest option, eg. sort by latest">
Latest
</message>
<message name="IDS_SORT_BY" desc="Generic label for a prompt to sort something.">
Sort by:
</message>
<message name="IDS_PROVIDED_BY_GOOGLE" desc="Generic label for something that comes from Google servers.">
Provided by Google
</message>
<message name="IDS_ACCESSIBILITY_TOOLBAR_BTN_MENU" desc="Content description for the settings menu button.">
Customize and control Google Chrome
</message>
<message name="IDS_ACCESSIBILITY_TOOLBAR_BTN_FORWARD" desc="Content description for the forward navigation button.">
Go forward
</message>
<message name="IDS_ACCESSIBILITY_TOOLBAR_BTN_BACK" desc="Content description for the backard navigation button.">
Go back
</message>
<message name="IDS_ACCESSIBILITY_TOOLBAR_BTN_DELETE_URL" desc="Content description for the clear text input button.">
Clear input
</message>
<message name="IDS_ACCESSIBILITY_LIST_MENU_BUTTON" desc="Content description for the button that shows option menu for a list item.">
<ph name="NAME_OF_LIST_ITEM">%1$s<ex>Movie Title</ex></ph> Options
</message>
<message name="IDS_ACCESSIBILITY_LIST_REMOVE_BUTTON" desc="Content description for the button that removes a list item.">
<ph name="NAME_OF_LIST_ITEM">%1$s<ex>Movie Title</ex></ph> Remove
</message>
<message name="IDS_ACCESSIBILITY_TOOLBAR_SCREEN_POSITION" desc="Accessibility announcement to inform users about a toolbar's location.">
<ph name="ITEM_COUNT">%1$s<ex>3</ex></ph> selected. Options available near top of the screen
</message>
<message name="IDS_ACCESSIBILITY_TOOLBAR_MULTI_SELECT" desc="Accessibility announcement to inform users about more items selected.">
<ph name="ITEM_COUNT">%1$s<ex>3</ex></ph> selected
</message>
<message name="IDS_ACCESSIBILITY_CANCEL_SELECTION" desc="Content description for the cancel selection button that deselects the selected items in a selectable list view.">
Cancel selection
</message>
<message name="IDS_ACCESSIBILITY_EXPAND_BUTTON" desc="Content description for the expand button in the expand_arrow_with_separator layout.">
Expand
</message>
<message name="IDS_SELECTED_ITEMS" desc="Content description for a number indicating how many items are selected. [ICU Syntax]">
{NUM_SELECTED, plural,
=1 {1 selected}
other {# selected}}
</message>
<message name="IDS_SELECT_ITEMS" desc="Label shown on toolbar asking user to select items from the list.">
Select items
</message>
<message name="IDS_ACCESSIBILITY_SECURITY_BTN_SECURE" desc="Content description for the security icon for pages with a valid certificate.">
Connection is secure
</message>
<message name="IDS_ACCESSIBILITY_SECURITY_BTN_WARN" desc="Content description for the security icon for pages with insecure passive content.">
Your connection to this site is not secure
</message>
<message name="IDS_ACCESSIBILITY_SECURITY_BTN_DANGEROUS" desc="Content description for the security icon for dangerous pages.">
This page is dangerous
</message>
<message name="IDS_CONCAT_TWO_STRINGS_WITH_PERIODS" desc="This string concatenates two other strings. In the English language, this particular concatenation is done via a period and a whitespace after the first string, and a period after the second string. For example: '1 compromised password. 2 weak passwords.'">
<ph name="TYPE_1">%1$s<ex>2 compromised passwords</ex></ph>. <ph name="TYPE_2">%2$s<ex>7 weak passwords</ex></ph>.
</message>
<!-- Cookie controls UI -->
<message name="IDS_COOKIE_CONTROLS_BLOCKED_COOKIES" desc="Text showing the number of blocked cookies on a site.">
{COOKIE_COUNT, plural,
=1 {1 cookie blocked}
other {# cookies blocked}}
</message>
<!-- Certificate viewer -->
<message name="IDS_CERTTITLE" desc="Dialog box title for viewing security certificates. [CHAR_LIMIT=32]">
Certificate viewer
</message>
<!-- Settings UI -->
<message name="IDS_MANAGED_BY_YOUR_ORGANIZATION" desc="Popup message when the user clicks a UI element that has been disabled by enterprise policy.">
This setting is enforced by your administrator.
</message>
<message name="IDS_MANAGED_BY_YOUR_PARENTS" desc="Popup message when the user clicks a UI element that has been disabled by their parents.">
Managed by your parents
</message>
<message name="IDS_MANAGED_BY_YOUR_PARENT" desc="Popup message when the user clicks a UI element that has been disabled by their parent.">
Managed by your parent
</message>
<message name="IDS_MANAGED_SETTINGS_CANNOT_BE_RESET" desc="Popup message when the user clicks a UI element that resets a list of settings that include managed settings.">
Managed settings cannot be reset
</message>
<message name="IDS_ACCESSIBILITY_EXPANDED_GROUP" desc="The accessibility text to read when the selected widget is expanded.">
Expanded - click to collapse.
</message>
<message name="IDS_ACCESSIBILITY_COLLAPSED_GROUP" desc="The accessibility text to read when the selected widget is collapsed.">
Collapsed - click to expand.
</message>
<message name="IDS_MENU_HELP" desc="Menu item for opening the help page. [CHAR_LIMIT=27]">
Help & feedback
</message>
<message name="IDS_AUTOMATICALLY_BLOCKED" desc="Description displayed next to an origin when it was placed under embargo by Chrome. This indicates to the user that the origin is blocked automatically instead of being the result of the user's decision.">
Automatically blocked
</message>
<!-- Downloads UI -->
<message name="IDS_DOWNLOAD_NOTIFICATION_CANCEL_BUTTON" desc="Text on the button that cancels a download.">
Cancel
</message>
<message name="IDS_DOWNLOAD_NOTIFICATION_COMPLETED" desc="Download notification to be displayed when a download completes.">
Download complete
</message>
<message name="IDS_DOWNLOAD_NOTIFICATION_COMPLETED_WITH_SIZE" desc="Download notification to be displayed when a download completes, includes the size of the download as well after a separator character.">
Download complete <ph name="SEPARATOR">•</ph> <ph name="BYTES_DOWNLOADED">%1$s<ex>4.3 MB</ex></ph>
</message>
<message name="IDS_DOWNLOAD_NOTIFICATION_FAILED" desc="Download notification to be displayed when a download fails.">
Download failed
</message>
<message name="IDS_DOWNLOAD_NOTIFICATION_PAUSED" desc="Download notification to be displayed when a download pauses.">
Download paused
</message>
<message name="IDS_DOWNLOAD_NOTIFICATION_PAUSE_BUTTON" desc="Text on the button that pauses a download.">
Pause
</message>
<message name="IDS_DOWNLOAD_NOTIFICATION_RESUME_BUTTON" desc="Text on the button that resumes a paused download.">
Resume
</message>
<message name="IDS_DOWNLOAD_UI_DETERMINATE_BYTES" desc="Appears in a notification when a user starts downloading a file. Indicates the number of bytes downloaded out of the total file size. E.g. 3/7 MB [downloaded]. As appropriate for your language, use '/' or 'of'; and change word order as needed.">
<ph name="BYTES_DOWNLOADED_WITH_UNITS">%1$s<ex>12.2 MB</ex></ph> / <ph name="FILE_SIZE_WITH_UNITS">%2$s<ex>20.3 GB</ex></ph>
</message>
<message name="IDS_DOWNLOAD_UI_INDETERMINATE_BYTES" desc="Appears in a notification when a user starts downloading a file. Indicates the number of bytes downloaded out of an unknown total file size. E.g. 3/? MB [downloaded]. As appropriate for your language, use '/' or 'of'; and change word order as needed.">
<ph name="BYTES_DOWNLOADED_WITH_UNITS">%1$s<ex>12.2 MB</ex></ph> / ?
</message>
<message name="IDS_DOWNLOAD_UI_KB" desc="String indicating the size of a downloaded file (in progress or complete), in kilobytes.">
<ph name="kilobytes">%1$3.2f<ex>12.5</ex></ph> KB
</message>
<message name="IDS_DOWNLOAD_UI_MB" desc="String indicating the size of a downloaded file (in progress or complete), in megabytes.">
<ph name="megabytes">%1$3.2f<ex>12.5</ex></ph> MB
</message>
<message name="IDS_DOWNLOAD_UI_GB" desc="String indicating the size of a downloaded file (in progress or complete), in gigabytes.">
<ph name="gigabytes">%1$3.2f<ex>12.5</ex></ph> GB
</message>
<!-- Override URL -->
<message name="IDS_BLOCKED_NAVIGATION_WARNING" desc="Warning message added to dev tools console when navigation to a given URL is blocked.">
Navigation is blocked: <ph name="URL">%1$s<ex>intent://abcd</ex></ph>
</message>
<message name="IDS_UNREACHABLE_NAVIGATION_WARNING" desc="Warning message added to dev tools console when navigation to a given URL is unreachable.">
Navigation is unreachable: <ph name="URL">%1$s<ex>intent://abcd</ex></ph>
</message>
<!-- Page Info popup -->
<message name="IDS_PAGE_INFO_ABOUT_THIS_PAGE_TITLE" desc="The title of the 'About this page' row in the Page Info bubble.">
About this page
</message>
<message name="IDS_PAGE_INFO_ABOUT_THIS_PAGE_DESCRIPTION_PLACEHOLDER" desc="The description of the 'About this page' row in the Page Info bubble if no more detailed description is available. 'It' refers to the page the user is currently visiting.">
Learn about its source and topic
</message>
<message name="IDS_PAGE_INFO_DOMAIN_HIDDEN" desc="Message to display in the page info bubble when the domain is hidden.">
This content is from <ph name="DOMAIN_NAME">%1$s<ex>google.com</ex></ph>, delivered by Google.
</message>
<message name="IDS_PAGE_INFO_FORGET_SITE_TITLE" desc="Label used at top of dialog which clears stored information displayed in page info (ie permissions, cookies, eventually history).">
Forget this site?
</message>
<message name="IDS_PAGE_INFO_FORGET_SITE_MESSAGE" desc="Message used in dialogwhich clears stored information displayed in page info.">
Are you sure you want to reset permissions, and clear cookies and site data?
</message>
<message name="IDS_PAGE_INFO_FORGET_SITE_CONFIRMATION_BUTTON" desc="Confirmation button in dialog which clears stored information displayed in page info.">
Forget
</message>
<message name="IDS_PAGE_INFO_HISTORY_TITLE" desc="Label used in the Page Info dialog above the history list.">
History
</message>
<message name="IDS_PAGE_INFO_HISTORY_FORGET" desc="Label used in the Page Info dialog for clearing history information">
Forget this site
</message>
<message name="IDS_PAGE_INFO_HISTORY_LAST_VISIT_TODAY" desc="Summary string for page info history row. The site was last visited today.">
Last visited today
</message>
<message name="IDS_PAGE_INFO_HISTORY_LAST_VISIT_YESTERDAY" desc="Summary string for page info history row. The site was last visited yesterday.">
Last visited yesterday
</message>
<message name="IDS_PAGE_INFO_HISTORY_LAST_VISIT_DAYS" desc="Summary string for page info history row. The site was last visited NUM_DAYS days ago.">
Last visited <ph name="NUM_DAYS">%1$s<ex>2</ex></ph> days ago
</message>
<message name="IDS_PAGE_INFO_HISTORY_LAST_VISIT_DATE" desc="Summary string for page info history row. The site was last visited on a particular date.">
Last visited <ph name="DATE">%1$s<ex>Apr 4, 2021</ex></ph>
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_TITLE" desc="Label used in the Page Info dialog above the permissions list.">
Permissions
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_RESET" desc="The label for the button allowing users to reset the permissions for a website.">
Reset permissions
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_RESET_DIALOG_TITLE" desc="The title for the dialog asking if the user is sure about resetting the permissions for a site.">
Reset permissions?
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_RESET_CONFIRMATION" desc="The confirmation text asking if the user is sure about resetting the permissions for a site.">
This choice will reset permissions for <ph name="WEBSITE">%1$s<ex>example.com</ex></ph>
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_OS_WARNING" desc="Text to show an OS-level permission warning.">
<ph name="PERMISSION">%1$s<ex>Location</ex></ph> - <ph name="WARNING_MESSAGE">%2$s<ex>Turned off for this device</ex></ph>
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_SUMMARY_1_ALLOWED" desc="Summary page info permissions string for one allowed permission.">
<ph name="PERMISSION_1">%1$s<ex>Location</ex></ph> allowed
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_SUMMARY_1_BLOCKED" desc="Summary page info permissions string for for one blocked permission.">
<ph name="PERMISSION_1">%1$s<ex>Location</ex></ph> blocked
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_SUMMARY_2_MIXED" desc="Summary page info permissions string for 2 permissions, with a mix of allowed/blocked.
For the languages in which allowed/blocked have to agree with the gender of the permission, a translation of the string 'PERMISSION_1 and PERMISSION_2' should be used instead.
Refer to b/168814348 for more details.">
<ph name="PERMISSION_1">%1$s<ex>Location</ex></ph> allowed, <ph name="PERMISSION_2">%2$s<ex>Sound</ex></ph> blocked
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_SUMMARY_2_ALLOWED" desc="Summary page info permissions string for 2 permissions, all allowed.">
<ph name="PERMISSION_1">%1$s<ex>Location</ex></ph> and <ph name="PERMISSION_2">%2$s<ex>Sound</ex></ph> allowed
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_SUMMARY_2_BLOCKED" desc="Summary page info permissions string for 2 permissions, all blocked.">
<ph name="PERMISSION_1">%1$s<ex>Location</ex></ph> and <ph name="PERMISSION_2">%2$s<ex>Sound</ex></ph> blocked
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_SUMMARY_MORE_MIXED" desc="Summary page info permissions string for more than 2 permissions, with a mix of allowed/blocked.">
{PERMISSIONS_SUMMARY_MIXED, plural,
=1 {<ph name="PERMISSION_1">%1$s<ex>Location</ex></ph>, <ph name="PERMISSION_2">%2$s<ex>Sound</ex></ph>, and <ph name="NUM_MORE">%3$s<ex>1</ex></ph> more}
other {<ph name="PERMISSION_1">%1$s<ex>Location</ex></ph>, <ph name="PERMISSION_2">%2$s<ex>Sound</ex></ph>, and <ph name="NUM_MORE">%3$s<ex>2</ex></ph> more}}
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_SUMMARY_MORE_ALLOWED" desc="Summary page info permissions string for more than 2 permissions, all allowed.">
{PERMISSIONS_SUMMARY_ALLOWED, plural,
=1 {<ph name="PERMISSION_1">%1$s<ex>Location</ex></ph>, <ph name="PERMISSION_2">%2$s<ex>Sound</ex></ph>, and <ph name="NUM_MORE">%3$s<ex>1</ex></ph> more allowed}
other {<ph name="PERMISSION_1">%1$s<ex>Location</ex></ph>, <ph name="PERMISSION_2">%2$s<ex>Sound</ex></ph>, and <ph name="NUM_MORE">%3$s<ex>2</ex></ph> more allowed}}
</message>
<message name="IDS_PAGE_INFO_PERMISSIONS_SUMMARY_MORE_BLOCKED" desc="Summary page info permissions string for more than 2 permissions, all blocked.">
{PERMISSIONS_SUMMARY_BLOCKED, plural,
=1 {<ph name="PERMISSION_1">%1$s<ex>Location</ex></ph>, <ph name="PERMISSION_2">%2$s<ex>Sound</ex></ph>, and <ph name="NUM_MORE">%3$s<ex>1</ex></ph> more blocked}
other {<ph name="PERMISSION_1">%1$s<ex>Location</ex></ph>, <ph name="PERMISSION_2">%2$s<ex>Sound</ex></ph>, and <ph name="NUM_MORE">%3$s<ex>2</ex></ph> more blocked}}
</message>
<message name="IDS_PAGE_INFO_LITE_MODE_HTTPS_IMAGE_COMPRESSION" desc="This text is displayed in the page info bubble when the currently viewed page has https images that were optimized by Google">
To save you data, this page's images have been optimized by Google.
</message>
<message name="IDS_PAGE_INFO_OPEN_ONLINE_BUTTON" desc="Text in the button that attempts to open an online version of the offline website displayed in the tab.">
Open Online
</message>
<message name="IDS_PAGE_INFO_SITE_SETTINGS_BUTTON" desc="Text in the button that opens a website's Site Settings from the Page Info dialog.">
Site settings
</message>
<message name="IDS_PAGE_INFO_COOKIES_TITLE" desc="Page info Cookies subpage title.">
Cookies and site data
</message>
<message name="IDS_PAGE_INFO_COOKIES_CLEAR" desc="Text on the button to clear cookies for a site.">
Delete cookies?
</message>
<message name="IDS_PAGE_INFO_COOKIES_CLEAR_CONFIRMATION" desc="Description of the confirmation dialog when the user clicked 'Delete cookies'.">
This deletes cookies and other site data for <ph name="WEBSITE">%1$s<ex>example.com</ex></ph>
</message>
<message name="IDS_PAGE_INFO_COOKIES_CLEAR_CONFIRMATION_BUTTON" desc="Button in the confirmation dialog when the user clicked 'Delete cookies'.">
Delete
</message>
<message name="IDS_PAGE_INFO_COOKIES_DESCRIPTION" desc="Description in the Page Info UI explaining cookies.">
Cookies and other site data are used to remember you, for example to sign you in or to personalize ads. To manage cookies for all sites, see <ph name="BEGIN_LINK"><link></ph>Settings<ph name="END_LINK"></link></ph>.
</message>
<message name="IDS_PAGE_INFO_COOKIES_BLOCKING_RESTART_TODAY_TITLE" desc="Subtitle shown on the Page Info UI when cookies are allowed temporarily, indicating how long until they are no longer allowed. Used for the Today's variation.">
Chrome will block cookies again today
</message>
<message name="IDS_PAGE_INFO_COOKIES_BLOCKING_RESTART_TITLE" desc="Subtitle shown on the Page Info UI when cookies are allowed temporarily, indicating how long until they are no longer allowed.">
{DAYS, plural,
=1 {Chrome will block cookies again tomorrow}
other {# days until Chrome blocks cookies again}}
</message>
<message name="IDS_PAGE_INFO_COOKIES_BLOCKING_RESTART_TRACKING_PROTECTION_TITLE" desc="Subtitle shown on the Page Info UI when cookies are allowed temporarily, indicating how long until they are no longer allowed.">
{DAYS, plural,
=1 {Chrome will block cookies again tomorrow}
other {# days until cookies are blocked again}}
</message>
<message name="IDS_PAGE_INFO_COOKIES_LIMITING_RESTART_TODAY_TITLE" desc="Subtitle shown on the Page Info UI when cookies are allowed temporarily, indicating how long until they are no longer allowed. Used for the Today's variation.">
Chrome will limit cookies again today
</message>
<message name="IDS_PAGE_INFO_COOKIES_LIMITING_RESTART_TITLE" desc="Subtitle shown on the Page Info UI when cookies are allowed temporarily, indicating how long until they are no longer allowed.">
{DAYS, plural,
=1 {Chrome will limit cookies again tomorrow}
other {# days until Chrome limits cookies again}}
</message>
<message name="IDS_PAGE_INFO_COOKIES_SEND_FEEDBACK_DESCRIPTION" desc="Text asking the user for feedback on why they allowed third-party cookies for this particular site.">
Help us improve Chrome by telling us why you allowed third-party cookies. <ph name="BEGIN_LINK"><link></ph>Send feedback<ph name="END_LINK"></link></ph>
</message>
<message name="IDS_PAGE_INFO_COOKIES_TRACKING_PROTECTION_DESCRIPTION" desc="Text describing the consequences of allowing third-party cookies for a particular site.">
You temporarily allowed this site to use third-party cookies, which means less browsing protection but site features are more likely to work as expected. <ph name="BEGIN_LINK"><link></ph>Send feedback<ph name="END_LINK"></link></ph>
</message>
<message name="IDS_PAGE_INFO_COOKIES_PERMANENT_ALLOWED_TITLE" desc="A subtitle in the Page Info UI if cookies were allowed by the user and they won't be automatically blocked again the future.">
You allowed third-party cookies for this site
</message>
<message name="IDS_PAGE_INFO_COOKIES_SITE_NOT_WORKING_TITLE" desc="Label shown on a dialog that allows users to turn off third-party cookie blocking for a specific site.">
Site not working?
</message>
<message name="IDS_PAGE_INFO_COOKIES_SITE_NOT_WORKING_DESCRIPTION_TEMPORARY" desc="Descriptive text in the Page Info UI explaining the trade-off of temporarily allowing third-party cookies for this site, a change that will automatically expire in the future.">
Try temporarily allowing third-party cookies, which means less protection but site features are more likely to work
</message>
<message name="IDS_PAGE_INFO_COOKIES_SITE_NOT_WORKING_DESCRIPTION_PERMANENT" desc="Descriptive text in the Page Info UI explaining the trade-off of allowing third-party cookies for this site, a change that will not automatically expire in the future.">
Try allowing third-party cookies, which means less protection but site features are more likely to work
</message>
<message name="IDS_PAGE_INFO_COOKIES_SITE_NOT_WORKING_DESCRIPTION_TRACKING_PROTECTION" desc="Descriptive text in the Page Info UI explaining the trade-off of temporarily allowing third-party cookies for this site, a change that will automatically expire in the future.">
Try temporarily allowing third-party cookies, which means less browsing protection but site features are more likely to work as expected.
</message>
<message name="IDS_PAGE_INFO_COOKIES_BLOCK" desc="Label for a toggle to allow or block third-party cookies for a site.">
Block third-party cookies
</message>
<message name="IDS_PAGE_INFO_ALL_COOKIES_BLOCK" desc="Label for a toggle to allow or block all cookies for a site.">
Block cookies
</message>
<message name="IDS_PAGE_INFO_COOKIES_IN_USE" desc="Label showing the amount of cookies being used by a site.">
{NUM_SELECTED, plural,
=1 {1 cookie in use}
other {# cookies in use}}
</message>
<message name="IDS_PAGE_INFO_SITES_ALLOWED" desc="Label showing the number of sites where cookies are allowed.">
{NUM_SELECTED, plural,
=1 {1 site allowed}
other {# sites allowed}}
</message>
<message name="IDS_PAGE_INFO_SITES_BLOCKED" desc="Label showing the number of sites where cookies are blocked.">
{NUM_SELECTED, plural,
=1 {1 site blocked}
other {# sites blocked}}
</message>
<message name="IDS_PAGE_INFO_COOKIES_SUBTITLE_ALLOWED" desc="Description text in the Page Info dialog to indicate that third-party cookies are allowed on this site.">
Third-party cookies allowed
</message>
<message name="IDS_PAGE_INFO_COOKIES_SUBTITLE_BLOCKED" desc="Description text in the Page Info dialog to indicate that third-party cookies are blocked on this site.">
Third-party cookies blocked
</message>
<message name="IDS_PAGE_INFO_TRACKING_PROTECTION_TOGGLE_LIMITED" desc="Summary text in the Page Info dialog to indicate that third-party cookies are limited on this site.">
Limited
</message>
<message name="IDS_PAGE_INFO_TRACKING_PROTECTION_TOGGLE_BLOCKED" desc="Summary text in the Page Info dialog to indicate that third-party cookies are blocked on this site.">
Blocked
</message>
<message name="IDS_PAGE_INFO_TRACKING_PROTECTION_TOGGLE_ALLOWED" desc="Summary text in the Page Info dialog to indicate that third-party cookies are allowed on this site.">
Allowed
</message>
<message name="IDS_PAGE_INFO_COOKIES_SUBTITLE_BLOCKED_HIGH_CONFIDENCE" desc="Description text in the Page Info dialog to indicate that third-party cookies are blocked on a site that has a high breakage confidence level.">
Site not working? Third-party cookies blocked
</message>
<message name="IDS_PAGE_INFO_COOKIES_THIRD_PARTY_COOKIES_LABEL" desc="The label used in the Page Info dialog to label a toggle button that when enabled allows third-party cookies and when disabled blocks third-party cookies.">
Third-party cookies
</message>
<message name="IDS_PAGE_INFO_TRACKING_PROTECTION_TITLE" desc="The header label of Tracking Protection page.">
Tracking Protection
</message>
<message name="IDS_PAGE_INFO_TRACKING_PROTECTION_DESCRIPTION" desc="Description text for the Tracking Protection subpage in the page info view. Contains a link to the Tracking Protection settings page.">
Chrome limits most sites from using third-party cookies to track you as you browse. Visit settings to <ph name="BEGIN_LINK"><link></ph>manage your tracking protections<ph name="END_LINK"></link></ph>
</message>
<message name="IDS_PAGE_INFO_TRACKING_PROTECTION_SITE_GRANT_DESCRIPTION" desc="Description text for the Tracking Protection subpage in the page info view for when a site has a TPCD grant. Contains a link to the Tracking Protection settings page.">
Chrome limits most sites from using third-party cookies. But third-party cookies are allowed on this site because it relies on them to provide basic services.\n\nVisit settings to <ph name="BEGIN_LINK"><link></ph>manage your tracking protections<ph name="END_LINK"></link></ph>.
</message>
<message name="IDS_PAGE_INFO_TRACKING_PROTECTION_BLOCKED_COOKIES_DESCRIPTION" desc="Description text for the Tracking Protection subpage in the page info view if all cookies are blocked. Contains a link to the Tracking Protection settings page.">
You blocked sites from using third-party cookies to track you as you browse. Visit settings to <ph name="BEGIN_LINK"><link></ph>manage your tracking protections<ph name="END_LINK"></link></ph>.
</message>
<message name="IDS_PAGE_INFO_TRACKING_PROTECTION_INCOGNITO_BLOCKED_COOKIES_DESCRIPTION" desc="Description text for the Tracking Protection subpage in the page info view in incognito mode when cookies are blocked. Contains a link to the Tracking Protection settings page.">
Chrome blocks sites from using third-party cookies to track you as you browse. Visit settings to <ph name="BEGIN_LINK"><link></ph>manage your tracking protections<ph name="END_LINK"></link></ph>.
</message>
<message name="IDS_PAGE_INFO_TRACKING_PROTECTION_SUBTITLE_COOKIES_LIMITED" desc="Description text in the Page Info dialog to indicate that third-party cookies are limited on this site.">
Third-party cookies limited
</message>
<message name="IDS_PAGE_INFO_ANDROID_LOCATION_BLOCKED" desc="The label used in the Page Info dialog to indicate that location has been been disabled for the device in Android settings">
Turned off for this device
</message>
<message name="IDS_PAGE_INFO_ANDROID_NFC_UNSUPPORTED" desc="The label used in the Page Info dialog to indicate NFC is not supported by this device">
This device can't read NFC
</message>
<message name="IDS_PAGE_INFO_ANDROID_PERMISSION_BLOCKED" desc="The label used in the Page Info dialog to indicate a permission has been blocked within Android settings">
Turned off in Android settings
</message>
<message name="IDS_PAGE_INFO_ANDROID_AR_CAMERA_BLOCKED" desc="The label used in the Page Info dialog for the AR permission to indicate that Camera has been disabled for the device in Android settings">
Camera is turned off in Android settings
</message>
<message name="IDS_PAGE_INFO_URL_EXPANDED" desc="Accessibility announcement when the URL in PageInfo switches from truncated to full display">
URL expanded
</message>
<message name="IDS_PAGE_INFO_URL_TRUNCATED" desc="Accessibility announcement when the URL in PageInfo switches from full to truncated display">
URL truncated
</message>
<message name="IDS_PAGE_INFO_AD_PRIVACY_HEADER" desc="A label that represents the new ad-related settings. 1) Navigate to any site. 2) Click the icon (often a lock) to the left of the URL in the address bar. Information about the page you're viewing appears. The 'Ad privacy' label will appear above the 'Site settings' button.">
Ad privacy
</message>
<message name="IDS_PAGE_INFO_AD_PRIVACY_TOPICS_DESCRIPTION" desc="1 of 3 possible descriptions a user might see when they choose 'Ad privacy' from page info for a specific site. 1) Navigate to any site. 2) Click the icon (often a lock) to the left of the URL in the address bar. Information about the page you're viewing appears. The 'Ad privacy' label will appear above the 'Site settings' button. 3) Click on Ad privacy. This string describes the case that the site being viewed uses the Ad topics setting. What's the Ad topics setting? When on, Chrome will estimate the user's topics of interest based on their recent browsing history and then show up to 3 of those topics with a site so that the site can better personalize ads (a privacy-preserving way to replicate some of the functionality of third-party cookies). In this case, we're informing the user that this site uses the Ad topics API and we're showing the user the ad topics Chrome has shared with the site. A button 'Manage ad privacy' allows the user to turn 'Ad privacy' settings on/off or to block specific ad topics.">
This site gets your ad topics from Chrome to show you more relevant ads
</message>
<message name="IDS_PAGE_INFO_AD_PRIVACY_FLEDGE_DESCRIPTION" desc="2 of 3 possible descriptions a user might see when they choose 'Ad privacy' from page info for a specific site. 1) Navigate to any site. 2) Click the icon (often a lock) to the left of the URL in the address bar. Information about the page you're viewing appears. The 'Ad privacy' label will appear above the 'Site settings' button. 3) Click on Ad privacy. This string describes the case that the site being viewed uses the Site-suggested ads setting. What's the Site-suggested ads setting? When on, a site can determine a user's interests, save info with Chrome relative to those interests. Later, as a user continues browsing, a site can ask Chrome for a user's interests and the first site can (through Chrome) suggest ads the user might like. In this case, we're informing the user that this site uses the Site-suggested ads API. A button 'Manage ad privacy' allows the user to turn 'Ad privacy' settings on/off or to block specific ad topics.">
This site determines things you like and then suggests ads to other sites
</message>
<message name="IDS_PAGE_INFO_AD_PRIVACY_TOPICS_AND_FLEDGE_DESCRIPTION" desc="3 of 3 possible descriptions a user might see when they choose 'Ad privacy' from page info for a specific site. 1) Navigate to any site. 2) Click the icon (often a lock) to the left of the URL in the address bar. Information about the page you're viewing appears. The 'Ad privacy' label will appear above the 'Site settings' button. 3) Click on Ad privacy. This string describes the case that the site being viewed uses both the Ad topics and Site-suggested ads settings. AD TOPICS: When on, Chrome will estimate the user's topics of interest based on their recent browsing history and then show up to 3 of those topics with a site so that the site can better personalize ads (a privacy-preserving way to replicate some of the functionality of third-party cookies). SITE-SUGGESTED ADS: When on, a site can determine a user's interests, save info with Chrome relative to those interests. Later, as a user continues browsing, a site can ask Chrome for a user's interests and the first site can (through Chrome) suggest ads the user might like. In this case, we're informing the user that this site 1) has asked Chrome for the user's interests (the Ad topics setting), and 2) uses the Site-suggested ads API (this site determines the user's interests and then can suggest ads to other sites as the user continues browsing). A button 'Manage ad privacy' allows the user to turn 'Ad privacy' settings on/off or to block specific ad topics or sites.">
This site determines things you like and then suggests ads to other sites. This site also gets your ad topics from Chrome to show you more relevant ads.
</message>
<message name="IDS_PAGE_INFO_AD_PRIVACY_SUBPAGE_MANAGE_BUTTON" desc="A button label that opens the Ad privacy page, allowing a user to turn on / off the ad privacy settings and to manage the topics and sites that influence ad personalization.">
Manage ad privacy
</message>
<message name="IDS_COOKIES_TITLE" desc="Title for the Cookies settings screen [CHAR_LIMIT=32]">
Cookies
</message>
<message name="IDS_ACCESSIBILITY_TOOLBAR_BTN_SITE_INFO" desc="Content description for the page icon that gives more site information when clicked. The icon can be a magnifier for search result pages, or other icons representing the page state.">
Site information
</message>
<message name="IDS_ACCESSIBILITY_TOOLBAR_VIEW_SITE_INFO" desc="Spoken by screen readers to explain that clicking on the status icon will show more site information when clicked. The string is read in the context of the 'Double tap to...' Android screen reader accessibility prompt e.g. 'Double tap to view site information'.">
View site information
</message>
<!-- Media Capture and Streams -->
<message name="IDS_VIDEO_CAPTURE_NOTIFICATION_TITLE" desc="Text to be shown as a notification when a WebRTC video call is in progress.">
A site is using your camera
</message>
<message name="IDS_AUDIO_CAPTURE_NOTIFICATION_TITLE" desc="Text to be shown as a notification when a WebRTC audio call is in progress">
A site is using your microphone
</message>
<message name="IDS_VIDEO_AUDIO_CAPTURE_NOTIFICATION_TITLE" desc="Text to be shown as a notification when a WebRTC video and audio call is in progress">
A site is using your camera and microphone
</message>
<message name="IDS_MEDIA_CAPTURE_NOTIFICATION_CONTENT_TEXT" desc="Url of the current tab. The notification will display this text for the user to identify the tab to return to.">
Tap to return to <ph name="URL_OF_THE_CURRENT_TAB">%1$s<ex>https://apprtc.appspot.com</ex></ph>
</message>
<message name="IDS_MEDIA_CAPTURE_NOTIFICATION_CONTENT_TEXT_INCOGNITO" desc="The notification will display this text for the user to return to the Incognito tab which has created the notification.">
Tap to return to the site
</message>
<message name="IDS_ACCESSIBILITY_STOP" desc="Accessible name for a button that stops playing or recording media.">
Stop
</message>
<message name="IDS_NOTIFICATION_INCOGNITO_TAB" desc="Text used as notifications source when the notification is from Incognito tabs.">
Incognito tab
</message>
<message name="IDS_NOTIFICATION_CATEGORY_COMPLETED_DOWNLOADS" desc="Label for completed download notifications, within a list of notification categories. [CHAR_LIMIT=32]">
Completed downloads
</message>
<message name="IDS_NOTIFICATION_CATEGORY_DOWNLOADS" desc="Label for notifications shown when something is downloading, within a list of notification categories. [CHAR_LIMIT=32]">
Active downloads
</message>
<message name="IDS_NOTIFICATION_CATEGORY_MEDIA_PLAYBACK" desc="Label for media playback notifications, within a list of notification categories. [CHAR_LIMIT=32]">
Playing media
</message>
<message name="IDS_NOTIFICATION_CATEGORY_WEBRTC_CAM_AND_MIC" desc="Label for notifications shown when media is being recorded from a camera or microphone, within a list of notification categories. [CHAR_LIMIT=32]">
Camera and microphone use
</message>
<message name="IDS_SCREEN_CAPTURE_NOTIFICATION_TITLE" desc="Text to be shown as a notification when screen capture is in progress.">
Sharing your screen
</message>
<!-- Bluetooth -->
<message name="IDS_CONNECTED_TO_BLUETOOTH_DEVICE_NOTIFICATION_TITLE" desc="Text to be shown as a notification when a website is connected to a Bluetooth device.">
Connected to a Bluetooth device
</message>
<message name="IDS_SCANNING_FOR_BLUETOOTH_DEVICES_NOTIFICATION_TITLE" desc="Text to be shown as a notification when a website is scanning for nearby Bluetooth devices.">
Scanning for Bluetooth devices
</message>
<message name="IDS_BLUETOOTH_NOTIFICATION_CONTENT_TEXT" desc="Url of the current tab. The notification will display this text for the user to identify the tab to return to.">
Tap to return to <ph name="URL_OF_THE_CURRENT_TAB">%1$s<ex>https://googlechrome.github.io/samples/web-bluetooth/device-info.html</ex></ph>
</message>
<message name="IDS_BLUETOOTH_NOTIFICATION_CONTENT_TEXT_INCOGNITO" desc="The notification will display this text for the user to return to the Incognito tab which has created the notification.">
Tap to return to the site
</message>
<!-- USB -->
<message name="IDS_CONNECTED_TO_USB_DEVICE_NOTIFICATION_TITLE" desc="Text to be shown as a notification when a website is connected to a USB device.">
Connected to a USB device
</message>
<message name="IDS_USB_NOTIFICATION_CONTENT_TEXT" desc="Url of the current tab. The notification will display this text for the user to identify the tab to return to.">
Tap to return to <ph name="URL_OF_THE_CURRENT_TAB">%1$s<ex>https://webusb.github.io/arduino/demos/console/</ex></ph>
</message>
<message name="IDS_USB_NOTIFICATION_CONTENT_TEXT_INCOGNITO" desc="The notification will display this text for the user to return to the Incognito tab which has created the notification.">
Tap to return to the site
</message>
<message name="IDS_SHARE_LINK_CHOOSER_TITLE" desc="title for the share dialog when sharing the current address [CHAR_LIMIT=27]">
Share via
</message>
<!-- Messages for media playback (casting, MediaSession, etc) -->
<message name="IDS_ACCESSIBILITY_PLAY" desc="The play button that starts playing the media.">
Play
</message>
<message name="IDS_ACCESSIBILITY_PAUSE" desc="The pause button that pauses playing the media.">
Pause
</message>
<message name="IDS_ACCESSIBILITY_REPLAY" desc="The replay button that replays the media.">
Play from the beginning
</message>
<message name="IDS_ACCESSIBILITY_PREVIOUS_TRACK" desc="The previous track button that switches media to the previous track.">
Previous track
</message>
<message name="IDS_ACCESSIBILITY_NEXT_TRACK" desc="The next track button that switches media to the next track.">
Next track
</message>
<message name="IDS_ACCESSIBILITY_SEEK_FORWARD" desc="The seek forward button that seeks media to a later position.">
Seek forward
</message>
<message name="IDS_ACCESSIBILITY_SEEK_BACKWARD" desc="The seek backward button that seeks media to an earlier position.">
Seek backward
</message>
<message name="IDS_ACCESSIBILITY_HANG_UP" desc="The hang up button that hangs up the video call.">
Hang up
</message>
<message name="IDS_ACCESSIBILITY_MUTE_MICROPHONE" desc="The mute microphone button that mutes the microphone of the video call.">
Mute microphone
</message>
<message name="IDS_ACCESSIBILITY_UNMUTE_MICROPHONE" desc="The unmute microphone button that unmutes the microphone of the video call.">
Unmute microphone
</message>
<message name="IDS_ACCESSIBILITY_TURN_ON_CAMERA" desc="The turn on camera button that turns on the camera of the video call.">
Turn on camera
</message>
<message name="IDS_ACCESSIBILITY_TURN_OFF_CAMERA" desc="The turn off camera button that turns off the camera of the video call.">
Turn off camera
</message>
<message name="IDS_ACCESSIBILITY_PREVIOUS_SLIDE" desc="The accessibility text of the previous slide button in a Picture-in-Picture window that allow users to navigate to the previous slide.">
Previous slide
</message>
<message name="IDS_ACCESSIBILITY_NEXT_SLIDE" desc="The accessibility text of the next slide button in a Picture-in-Picture window that allow users to navigate to the next slide.">
Next slide
</message>
<message name="IDS_MEDIA_NOTIFICATION_INCOGNITO" desc="Text used as a placeholder for a media notification about playing media, when notification is shown from Incognito tab.">
A site is playing media
</message>
<!-- BottomSheet -->
<message name="IDS_BOTTOM_SHEET_ACCESSIBILITY_DESCRIPTION" desc="Accessibility string read when the bottom sheet is focused informing the user that the sheet can be closed by swiping down.">
Swipe down to close.
</message>
<!-- Client certificate selection failure strings. -->
<message name="IDS_CLIENT_CERT_UNSUPPORTED_TITLE" desc="Title of a dialog box for when the operating system does not support client SSL certificate selection" formatter_data="android_java">
Unable to select certificate.
</message>
<message name="IDS_CLIENT_CERT_UNSUPPORTED_MESSAGE" desc="The message in a dialog box for when the operating system does not support client SSL certificate selection" formatter_data="android_java">
Client side certificate selection is not supported by the operating system.
</message>
<!-- Bottom bar -->
<message name="IDS_BOTTOM_BAR_SCREEN_POSITION" desc="Accessibility label to inform users about the InfoBar location">
Options available near bottom of the screen
</message>
<!-- Warning on sharing info with external apps in Incognito mode -->
<message name="IDS_EXTERNAL_APP_LEAVE_INCOGNITO_WARNING" desc="Alert dialog text warning the user (who is currently in Incognito mode) that the site they are currently using is going to share data with an external application." formatter_data="android_java">
This site is about to share information with an app outside of Incognito mode.
</message>
<message name="IDS_EXTERNAL_APP_LEAVE_INCOGNITO_WARNING_TITLE" desc="Title for dialog asking if the user wants to leave Incognito mode. [CHAR_LIMIT=32]" formatter_data="android_java">
Leave Incognito mode?
</message>
<message name="IDS_EXTERNAL_APP_LEAVE_INCOGNITO_STAY" desc="Label for the dialog button to stay in Incognito mode. [CHAR_LIMIT=20]" formatter_data="android_java">
Stay
</message>
<message name="IDS_EXTERNAL_APP_LEAVE_INCOGNITO_LEAVE" desc="Label for the dialog button to leave Incognito mode. [CHAR_LIMIT=20]" formatter_data="android_java">
Leave
</message>
<!-- Contacts Picker strings -->
<message name="IDS_CONTACTS_PICKER_SEARCH" desc="The hint text for the search box for contacts.">
Search your contacts
</message>
<message name="IDS_CONTACTS_PICKER_SELECT_CONTACTS" desc="The label at the top of the dialog that allows users to select contacts from their device and share the details with a web page.">
Select contacts
</message>
<message name="IDS_CONTACTS_PICKER_SELECT_CONTACT" desc="The label at the top of the dialog that allows users to select a single contact from their device and share the details with a web page.">
Select a contact
</message>
<message name="IDS_CONTACTS_PICKER_ALL_CONTACTS" desc="The label associated with the select all checkbox, indicating that all the contacts will be selected.">
All contacts
</message>
<message name="IDS_CONTACTS_PICKER_NO_CONTACTS_FOUND" desc="The label shown when no contacts are found (e.g. none exist on the device).">
No contacts found
</message>
<message name="IDS_TOP_VIEW_NAMES_FILTER_LABEL" desc="The label shown for the names filter toggle button (allowing the user to exclude names).">
Names
</message>
<message name="IDS_TOP_VIEW_ADDRESS_FILTER_LABEL" desc="The label shown for the address filter toggle button (allowing the user to exclude names).">
Addresses
</message>
<message name="IDS_TOP_VIEW_EMAIL_FILTER_LABEL" desc="The label shown for the email filter toggle button (allowing the user to exclude emails).">
Email addresses
</message>
<message name="IDS_TOP_VIEW_TELEPHONE_FILTER_LABEL" desc="The label shown for the telephone filter toggle button (allowing the user to exclude telephones).">
Phone numbers
</message>
<message name="IDS_TOP_VIEW_ICON_FILTER_LABEL" desc="The label shown for the icon filter toggle button (allowing the user to exclude icons).">
Profile photos
</message>
<message name="IDS_CONTACTS_PICKER_MORE_DETAILS" desc="Label describing that the user has one or more telephone/emails (used for either).">
{DETAIL_COUNT, plural,
=1 {(+ 1 more)}
other {(+ # more)}}
</message>
<message name="IDS_DISCLAIMER_SHARING_CONTACT_DETAILS" desc="Label describing what will happen with the contact details that are being shared.">
The contacts you select will be shared with <ph name="BEGIN_BOLD"><b></ph><ph name="SITE">%1$s<ex>https://www.google.com</ex></ph><ph name="END_BOLD"></b></ph>.
</message>
<!-- Photo picker -->
<message name="IDS_PHOTO_PICKER_SELECT_IMAGES" desc="The label in the title bar of the Photo Picker dialog, suggesting that the user can make multiple selections.">
Select images
</message>
<message name="IDS_PHOTO_PICKER_SELECT_IMAGE" desc="The label in the title bar of the Photo Picker dialog, suggesting that the user can make a single selection.">
Select an image
</message>
<message name="IDS_PHOTO_PICKER_CAMERA" desc="The label for the Camera action in the Photo Picker (opening the camera system intent).">
Camera
</message>
<message name="IDS_PHOTO_PICKER_BROWSE" desc="The label for the Browse action in the Photo Picker (browsing for photos).">
Browse
</message>
<message name="IDS_PHOTO_PICKER_VIDEO_DURATION" desc="The label showing the duration time and current position of the video, as in: 0:01 / 0:10.">
<ph name="POSITION">%1$s<ex>0:01</ex></ph> / <ph name="DURATION">%2$s<ex>0:10</ex></ph>
</message>
<message name="IDS_PHOTO_PICKER_ACCESSIBILITY_ZOOM_IN" desc="The accessibility string for the Zoom (in) button in the photo grid.">
Zoom in
</message>
<message name="IDS_PHOTO_PICKER_ACCESSIBILITY_ZOOM_OUT" desc="The accessibility string for the Zoom (out) button in the photo grid.">
Zoom out
</message>
<message name="IDS_DECODER_DESCRIPTION" desc="The title for the image decoder utility service.">
Image decoder
</message>
<message name="IDS_FAST_FORWARD_HINT" desc="The hint string shown when a user drags the tumb in the video seeker (reminding them of an easier way to skip ahead/go back).">
Double tap video left or right to skip 10s
</message>
<message name="IDS_ACCESSIBILITY_PLAY_VIDEO" desc="The accessibility string for the play video button.">
Play video
</message>
<message name="IDS_ACCESSIBILITY_PAUSE_VIDEO" desc="The accessibility string for the pause video button.">
Pause video
</message>
<message name="IDS_ACCESSIBILITY_MUTE_VIDEO" desc="The accessibility string for the mute video button.">
Mute video
</message>
<message name="IDS_ACCESSIBILITY_UNMUTE_VIDEO" desc="The accessibility string for the unmute video button.">
Unmute video
</message>
<message name="IDS_ACCESSIBILITY_FULL_SCREEN" desc="The accessibility string for the full screen video button.">
Full screen
</message>
<message name="IDS_ACCESSIBILITY_EXIT_FULL_SCREEN" desc="The accessibility string for the exiting of full screen video button.">
Exit full screen
</message>
<message name="IDS_ACCESSIBILITY_NTP_OFFLINE_BADGE" desc="Content description for the badge that indicates offline availability of a most visited item or content suggestion on the new tab page.">
Available offline
</message>
<message name="IDS_ACCESSIBILITY_VIDEO_PLAYER" desc="The accessibility string for the video player.">
Video player
</message>
<message name="IDS_ACCESSIBILITY_PLAYBACK_TIME" desc="The accessibility string for how much time has elapsed while viewing the video and how long the video is in total.">
Elapsed time <ph name="ELAPSED_TIME">%1$s<ex>0:01</ex></ph> of <ph name="TOTAL_TIME">%2$s<ex>0:45</ex></ph>.
</message>
<!-- Fullscreen -->
<message name="IDS_IMMERSIVE_FULLSCREEN_API_NOTIFICATION" desc="Notification message when a site has entered immersive fullscreen and the directions of how to exit.">
Drag from top and touch the back button to exit full screen.
</message>
<message name="IDS_IMMERSIVE_FULLSCREEN_API_NOTIFICATION_AUTOMOTIVE" desc="Notification message when a site has entered immersive fullscreen and the directions of how to exit.">
Press the back button to exit full screen.
</message>
<!-- WebApk name/icon report abuse dialog -->
<message name="IDS_WEBAPK_REPORT_ABUSE_DIALOG_TITLE" desc="The title at the top of the report abuse dialog.">
Uninstall '<ph name="APP_NAME">%1$s<ex>Google App</ex></ph>'?
</message>
<message name="IDS_WEBAPK_REPORT_ABUSE_CHECKBOX" desc="The label for the box you check when you want to report an app for abuse.">
Report abuse
</message>
<message name="IDS_WEBAPK_REPORT_ABUSE_CONFIRM" desc="The text within the confirmation button of the report abuse dialog.">
Uninstall
</message>
<message name="IDS_WEBAPK_REPORT_ABUSE_CANCEL" desc="The text within the cancelation button of the report abuse dialog.">
Cancel
</message>
<!-- Messages -->
<message name="IDS_MESSAGE_SCREEN_POSITION" desc="Accessibility label to inform users about the Message location">
Option available near top of the screen
</message>
<message name="IDS_MESSAGE_NEW_ACTIONS_AVAILABLE" desc="Accessibility label to inform a second message is shown">
New actions available near top of the screen
</message>
<message name="IDS_MESSAGE_DISMISS_AND_SHOW_NEXT" desc="Accessibility label to allow user to dismiss the current one in order to show the background message">
Dismiss and show next available action
</message>
<message name="IDS_MESSAGE_MORE_OPTIONS" desc="Accessibility label of the more options icon in the message banner. Clicking on the options icon will enable a context menu or a dialog showing more available actions related to the message banner.">
More options in the <ph name="BANNER_TITLE">%1$s<ex>Title</ex></ph>
</message>
<!-- In-Product Help -->
<message name="IDS_IPH_SNOOZE" desc="Snooze button text within In-Product Help tooltip.">
Remind me
</message>
<!-- ChipView -->
<message name="IDS_CHIP_REMOVE_ICON_CONTENT_DESCRIPTION" desc="Accessibility string for X icon on a chip announcing that clicking on this icon will remove this input chip.">
Remove '<ph name="CHIP_LABEL">%1$s<ex>News</ex></ph>'
</message>
<!-- Accessibility preferences -->
<message name="IDS_PREFS_ACCESSIBILITY" desc="Title of Accessibility settings, which allows the user to change webpage font sizes. [CHAR_LIMIT=32]">
Accessibility
</message>
<message name="IDS_FONT_SIZE" desc="Title for font size preference.">
Text scaling
</message>
<message name="IDS_FONT_SIZE_ACCESSIBILITY_LABEL" desc="Accessibility label for control to allow user to change font size.">
Text scaling set to <ph name="TEXT_SCALING">%1$s<ex>100%</ex></ph>
</message>
<message name="IDS_FONT_SIZE_PREVIEW_TEXT" desc="Preview text for font-size slider.">
Drag the slider until you can read this comfortably. Text should look at least this big after double-tapping on a paragraph.
</message>
<message name="IDS_FORCE_ENABLE_ZOOM_TITLE" desc="Title of preference that allows the user to zoom in on any webpage, even if the page tries to disable zooming.">
Force enable zoom
</message>
<message name="IDS_FORCE_ENABLE_ZOOM_SUMMARY" desc="Summary of preference that allows the user to zoom in on any webpage, even if the page tries to disable zooming.">
Override a website’s request to prevent zooming in
</message>
<message name="IDS_READER_FOR_ACCESSIBILITY_TITLE" desc="Title of preference that allows the user to use simplified view on any articles, even if the page is mobile-friendly. Simplified view is the new user-facing name for Reader Mode, which extracts the content of an article and removes clutter from a web page and puts the result in a easier-to-read format.">
Simplified view for web pages
</message>
<message name="IDS_ZOOM_INFO_PREFERENCE_TITLE" translateable="false" desc="Summary of preference that allows the user to view the set zoom levels for all websites.">
Saved zoom levels
</message>
<message name="IDS_READER_FOR_ACCESSIBILITY_SUMMARY" desc="Summary of preference that allows the user to use simplified view on any supported articles, even if the page is mobile-friendly.">
Get notified when an article can be shown in simplified view
</message>
<message name="IDS_ACCESSIBILITY_CAPTIONS_TITLE" desc="Title of the preference that allows the user to update caption settings.">
Captions
</message>
<!-- Text Size Contrast -->
<!-- TODO(crbug.com/1446230): Add descriptions and make the strings translateable. -->
<message name="IDS_TEXT_SIZE_CONTRAST_TITLE" translateable="false" desc="Title of the preference that allows the user to update the accessibility smart zoom feature that applies to the web contents.">
Text size contrast
</message>
<message name="IDS_TEXT_SIZE_CONTRAST_SUMMARY" translateable="false" desc="Summary of the preference that allows the user to update the accessibility smart zoom feature that applies to the web contents.">
Adjust the contrast between large and small text
</message>
<message name="IDS_TEXT_SIZE_CONTRAST_LEVEL" translateable="false" desc="Text description of the current text size contrast level set by the user">
<ph name="TEXT_SIZE_CONTRAST_LEVEL">%1$d<ex>100</ex></ph>
</message>
<!-- Page Zoom -->
<message name="IDS_PAGE_ZOOM_TITLE" desc="Title of the preference that allows the user to update the accessibility page zoom feature that applies to the web contents.">
Default zoom
</message>
<message name="IDS_PAGE_ZOOM_LABEL" desc="Accessibility label for control to allow user to change page zoom">
Page zoom
</message>
<message name="IDS_PAGE_ZOOM_LEVEL_LABEL" desc="Accessibility label for indicator of current page zoom level set by the user">
Current zoom is <ph name="ZOOM_LEVEL">%1$d<ex>100</ex></ph> %%
</message>
<message name="IDS_PAGE_ZOOM_SUMMARY" desc="Summary of the preference that allows the user to update the accessibility page zoom feature that applies to the web contents.">
Make text and images larger or smaller for all sites you visit
</message>
<message name="IDS_PAGE_ZOOM_MENU_TITLE" desc="Menu title of the tool that allows the user to update the accessibility page zoom level on a page's web contents.">
Zoom
</message>
<message name="IDS_PAGE_ZOOM_DECREASE_ZOOM_BUTTON_TEXT" desc="Accessibility label for button to allow user to decrease page zoom">
Decrease zoom
</message>
<message name="IDS_PAGE_ZOOM_INCREASE_ZOOM_BUTTON_TEXT" desc="Accessibility label for button to allow user to increase page zoom">
Increase zoom
</message>
<message name="IDS_PAGE_ZOOM_LEVEL" desc="Text description of the current page zoom level set by the user">
<ph name="ZOOM_LEVEL">%1$d<ex>100</ex></ph> %%
</message>
<message name="IDS_PAGE_ZOOM_ALWAYS_SHOW_PREFERENCE_TITLE" desc="Title of the preference that allows the user to always show the menu item for zoom">
Show zoom option in main menu
</message>
<message name="IDS_PAGE_ZOOM_ALWAYS_SHOW_PREFERENCE_SUMMARY" desc="Summary of the preference that allows the user to always show the menu item for zoom.">
Make it easier to customize zoom for different sites
</message>
<message name="IDS_PAGE_ZOOM_PREVIEW_TITLE" desc="Label of the section of sample text shown to the user to preview zoom level.">
Preview
</message>
<message name="IDS_PAGE_ZOOM_PREVIEW_TEXT_TITLE" desc="Sample text displayed to user in settings to see/test a desired zoom level.">
The Wonderful Wizard of Oz
</message>
<message name="IDS_PAGE_ZOOM_PREVIEW_TEXT_SUMMARY" desc="Sample text displayed to user in settings to see/test a desired zoom level.">
Chapter 11: The Wonderful Emerald City of Oz
</message>
<message name="IDS_PAGE_ZOOM_PREVIEW_TEXT_ITEM" desc="Sample text displayed to user in settings to see/test a desired zoom level.">
Even with eyes protected by the green spectacles Dorothy and her friends were at first dazzled by the
</message>
<message name="IDS_PAGE_ZOOM_IPH_MESSAGE" desc="Text for in-product help bubble that appears to alert user of the new Zoom option in the main menu">
You can zoom in or out on sites you visit
</message>
<!-- Search resumption module strings -->
<message name="IDS_SEARCH_RESUMPTION_MODULE_TITLE" desc="Title of the search resumption module on NTP or Start surface.">
Suggested searches based on your last tab
</message>
<message name="IDS_SEARCH_RESUMPTION_MODULE_TITLE_SHORT" desc="Title of the search resumption module on NTP or Start surface (short version).">
Suggested searches
</message>
<message name="IDS_SEARCH_RESUMPTION_MODULE_SUBTITLE" desc="Subtitle of the search resumption module on NTP or Start surface.">
Based on your last tab
</message>
<message name="IDS_ACCESSIBILITY_EXPANDED" is_accessibility_with_no_ui="true" desc="Content description when the search resumption module is expanded.">
Expanded
</message>
<message name="IDS_ACCESSIBILITY_COLLAPSED" is_accessibility_with_no_ui="true" desc="Content description when the search resumption module is collapsed.">
Collapsed
</message>
<message name="IDS_GO_TO_OS_SETTINGS" desc="When the user clicks on this text button, Chrome sends them to the device OS Settings. One use is the text button shown below the text 'Get alerts for price drops?', which takes the user to the Android notification settings. Another use is in the primary button of the dialog prompting the user to create a device lock, which takes the user to the Android security settings.">
Go to Settings
</message>
</messages>
</release>
</grit>
|