1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
|
/*
* Copyright (C) 2003-2021 Apple Inc. All rights reserved.
* Copyright (C) 2010 Igalia S.L
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "LocalizedStrings.h"
#include "DateComponents.h"
#include "IntSize.h"
#include "NotImplemented.h"
#include <wtf/MathExtras.h>
#include <wtf/text/MakeString.h>
#include <wtf/text/TextBreakIterator.h>
#include <wtf/unicode/CharacterNames.h>
#if PLATFORM(COCOA)
#include <wtf/RetainPtr.h>
#endif
#if USE(GLIB)
#include <wtf/glib/GUniquePtr.h>
#endif
namespace WebCore {
#if PLATFORM(COCOA)
String formatLocalizedString(CFStringRef format, ...)
{
va_list arguments;
va_start(arguments, format);
auto localizedFormat = copyLocalizedString(format);
ALLOW_NONLITERAL_FORMAT_BEGIN
// The 'format' parameter is already checked for correct placeholders and parameters.
auto result = adoptCF(CFStringCreateWithFormatAndArguments(0, 0, localizedFormat.get(), arguments));
ALLOW_NONLITERAL_FORMAT_END
va_end(arguments);
return result.get();
}
#elif PLATFORM(WIN)
String formatLocalizedString(const wchar_t* format, ...)
{
va_list arguments;
va_start(arguments, format);
int len = _vscwprintf(format, arguments);
Vector<wchar_t> buffer(len + 1);
_vsnwprintf(buffer.data(), len + 1, format, arguments);
va_end(arguments);
return { buffer.data() };
}
#else
// Because |format| is used as the second parameter to va_start, it cannot be a reference
// type according to section 18.7/3 of the C++ N1905 standard.
String formatLocalizedString(const char* format, ...)
{
#if USE(GLIB)
va_list arguments;
va_start(arguments, format);
GUniquePtr<gchar> result(g_strdup_vprintf(format, arguments));
va_end(arguments);
return String::fromUTF8(result.get());
#else
notImplemented();
return String::fromUTF8(format);
#endif
}
#endif
#if PLATFORM(COCOA)
static CFBundleRef webCoreBundle()
{
static LazyNeverDestroyed<RetainPtr<CFBundleRef>> bundle;
static std::once_flag flag;
std::call_once(flag, [&] mutable {
bundle.construct(CFBundleGetBundleWithIdentifier(CFSTR("com.apple.WebCore")));
});
ASSERT(bundle.get());
return bundle.get().get();
}
RetainPtr<CFStringRef> copyLocalizedString(CFStringRef key)
{
static CFStringRef notFound = CFSTR("localized string not found");
auto result = adoptCF(CFBundleCopyLocalizedString(webCoreBundle(), key, notFound, nullptr));
#if ASSERT_ENABLED
if (result.get() == notFound) {
char keyCString[256];
CFStringGetCString(key, keyCString, sizeof(keyCString), kCFStringEncodingUTF8);
ASSERT_WITH_MESSAGE(result.get() != notFound, "Could not find localizable string '%s' in bundle", keyCString);
}
#endif
return result;
}
#endif
#if PLATFORM(COCOA)
String localizedString(CFStringRef key)
{
return copyLocalizedString(key).get();
}
#elif PLATFORM(WIN)
String localizedString(const wchar_t* key)
{
return key;
}
#else
String localizedString(const char* key)
{
return String::fromUTF8(key);
}
#endif
#if PLATFORM(COCOA)
String truncatedStringForMenuItem(const String& original)
{
// Truncate the string if it's too long. This number is roughly the same as the one used by AppKit.
unsigned maxNumberOfGraphemeClustersInLookupMenuItem = 24;
auto trimmed = original.trim(deprecatedIsSpaceOrNewline);
unsigned numberOfCharacters = numCodeUnitsInGraphemeClusters(trimmed, maxNumberOfGraphemeClustersInLookupMenuItem);
return numberOfCharacters == trimmed.length() ? trimmed : makeString(trimmed.left(numberOfCharacters), horizontalEllipsis);
}
#endif
String inputElementAltText()
{
return WEB_UI_STRING_KEY("Submit", "Submit (input element)", "alt text for <input> elements with no alt, title, or value");
}
String resetButtonDefaultLabel()
{
return WEB_UI_STRING("Reset", "default label for Reset buttons in forms on web pages");
}
String searchableIndexIntroduction()
{
return WEB_UI_STRING("This is a searchable index. Enter search keywords: ",
"text that appears at the start of nearly-obsolete web pages in the form of a 'searchable index'");
}
String submitButtonDefaultLabel()
{
return WEB_UI_STRING("Submit", "default label for Submit buttons in forms on web pages");
}
String fileButtonChooseFileLabel()
{
return WEB_UI_STRING("Choose File", "title for a single file chooser button used in HTML forms");
}
String fileButtonChooseMultipleFilesLabel()
{
return WEB_UI_STRING("Choose Files", "title for a multiple file chooser button used in HTML forms. This title should be as short as possible.");
}
String fileButtonNoFileSelectedLabel()
{
return WEB_UI_STRING("no file selected", "text to display in file button used in HTML forms when no file is selected");
}
String fileButtonNoFilesSelectedLabel()
{
return WEB_UI_STRING("no files selected", "text to display in file button used in HTML forms when no files are selected and the button allows multiple files to be selected");
}
String defaultDetailsSummaryText()
{
return WEB_UI_STRING("Details", "text to display in <details> tag when it has no <summary> child");
}
#if ENABLE(CONTEXT_MENUS)
String contextMenuItemTagOpenLinkInNewWindow()
{
return WEB_UI_STRING_WITH_MNEMONIC("Open Link in New Window", "Open Link in New _Window", "Open in New Window context menu item");
}
String contextMenuItemTagDownloadLinkToDisk()
{
return WEB_UI_STRING_WITH_MNEMONIC("Download Linked File", "_Download Linked File", "Download Linked File context menu item");
}
#if !PLATFORM(GTK)
String contextMenuItemTagCopyLinkToClipboard()
{
return WEB_UI_STRING("Copy Link", "Copy Link context menu item");
}
#endif
String contextMenuItemTagOpenImageInNewWindow()
{
return WEB_UI_STRING_WITH_MNEMONIC("Open Image in New Window", "Open _Image in New Window", "Open Image in New Window context menu item");
}
#if !PLATFORM(GTK)
String contextMenuItemTagDownloadImageToDisk()
{
return WEB_UI_STRING("Download Image", "Download Image context menu item");
}
#endif
String contextMenuItemTagCopyImageToClipboard()
{
return WEB_UI_STRING_WITH_MNEMONIC("Copy Image", "Cop_y Image", "Copy Image context menu item");
}
String contextMenuItemTagOpenFrameInNewWindow()
{
return WEB_UI_STRING_WITH_MNEMONIC("Open Frame in New Window", "Open _Frame in New Window", "Open Frame in New Window context menu item");
}
String contextMenuItemTagCopy()
{
return WEB_UI_STRING_WITH_MNEMONIC("Copy", "_Copy", "Copy context menu item");
}
String contextMenuItemTagGoBack()
{
return WEB_UI_STRING_WITH_MNEMONIC("Back", "_Back", "Back context menu item");
}
String contextMenuItemTagGoForward()
{
return WEB_UI_STRING_WITH_MNEMONIC("Forward", "_Forward", "Forward context menu item");
}
String contextMenuItemTagStop()
{
return WEB_UI_STRING_WITH_MNEMONIC("Stop", "_Stop", "Stop context menu item");
}
String contextMenuItemTagReload()
{
return WEB_UI_STRING_WITH_MNEMONIC("Reload", "_Reload", "Reload context menu item");
}
String contextMenuItemTagCut()
{
return WEB_UI_STRING_WITH_MNEMONIC("Cut", "Cu_t", "Cut context menu item");
}
String contextMenuItemTagPaste()
{
return WEB_UI_STRING_WITH_MNEMONIC("Paste", "_Paste", "Paste context menu item");
}
String contextMenuItemTagNoGuessesFound()
{
return WEB_UI_STRING("No Guesses Found", "No Guesses Found context menu item");
}
String contextMenuItemTagIgnoreSpelling()
{
return WEB_UI_STRING_WITH_MNEMONIC("Ignore Spelling", "_Ignore Spelling", "Ignore Spelling context menu item");
}
String contextMenuItemTagLearnSpelling()
{
return WEB_UI_STRING_WITH_MNEMONIC("Learn Spelling", "_Learn Spelling", "Learn Spelling context menu item");
}
#if !PLATFORM(COCOA)
String contextMenuItemTagSearchWeb()
{
return WEB_UI_STRING_WITH_MNEMONIC("Search the Web", "_Search the Web", "Search the Web context menu item");
}
#endif
#if PLATFORM(COCOA)
String contextMenuItemTagLookUpInDictionary(const String& selectedString)
{
auto selectedCFString = truncatedStringForMenuItem(selectedString).createCFString();
return WEB_UI_FORMAT_CFSTRING("Look Up “%@”", "Look Up context menu item with selected word", selectedCFString.get());
}
#endif
String contextMenuItemTagOpenLink()
{
return WEB_UI_STRING_WITH_MNEMONIC("Open Link", "_Open Link", "Open Link context menu item");
}
String contextMenuItemTagIgnoreGrammar()
{
return WEB_UI_STRING_WITH_MNEMONIC("Ignore Grammar", "Ignore _Grammar", "Ignore Grammar context menu item");
}
String contextMenuItemTagSpellingMenu()
{
return WEB_UI_STRING_WITH_MNEMONIC("Spelling and Grammar", "Spelling and _Grammar", "Spelling and Grammar context sub-menu item");
}
String contextMenuItemTagShowSpellingPanel(bool show)
{
if (show)
return WEB_UI_STRING_WITH_MNEMONIC("Show Spelling and Grammar", "_Show Spelling and Grammar", "menu item title");
return WEB_UI_STRING_WITH_MNEMONIC("Hide Spelling and Grammar", "_Hide Spelling and Grammar", "menu item title");
}
String contextMenuItemTagCheckSpelling()
{
return WEB_UI_STRING_WITH_MNEMONIC("Check Document Now", "_Check Document Now", "Check spelling context menu item");
}
String contextMenuItemTagCheckSpellingWhileTyping()
{
return WEB_UI_STRING_WITH_MNEMONIC("Check Spelling While Typing", "Check Spelling While _Typing", "Check spelling while typing context menu item");
}
String contextMenuItemTagCheckGrammarWithSpelling()
{
return WEB_UI_STRING_WITH_MNEMONIC("Check Grammar With Spelling", "Check _Grammar With Spelling", "Check grammar with spelling context menu item");
}
String contextMenuItemTagFontMenu()
{
return WEB_UI_STRING_WITH_MNEMONIC("Font", "_Font", "Font context sub-menu item");
}
String contextMenuItemTagBold()
{
return WEB_UI_STRING_WITH_MNEMONIC("Bold", "_Bold", "Bold context menu item");
}
String contextMenuItemTagItalic()
{
return WEB_UI_STRING_WITH_MNEMONIC("Italic", "_Italic", "Italic context menu item");
}
String contextMenuItemTagUnderline()
{
return WEB_UI_STRING_WITH_MNEMONIC("Underline", "_Underline", "Underline context menu item");
}
String contextMenuItemTagOutline()
{
return WEB_UI_STRING_WITH_MNEMONIC("Outline", "_Outline", "Outline context menu item");
}
#if !PLATFORM(GTK)
String contextMenuItemTagWritingDirectionMenu()
{
return WEB_UI_STRING("Paragraph Direction", "Paragraph direction context sub-menu item");
}
String contextMenuItemTagTextDirectionMenu()
{
return WEB_UI_STRING("Selection Direction", "Selection direction context sub-menu item");
}
String contextMenuItemTagDefaultDirection()
{
return WEB_UI_STRING("Default", "Default writing direction context menu item");
}
String contextMenuItemTagLeftToRight()
{
return WEB_UI_STRING("Left to Right", "Left to Right context menu item");
}
String contextMenuItemTagRightToLeft()
{
return WEB_UI_STRING("Right to Left", "Right to Left context menu item");
}
#endif
String contextMenuItemTagOpenVideoInNewWindow()
{
return WEB_UI_STRING_WITH_MNEMONIC("Open Video in New Window", "Open _Video in New Window", "Open Video in New Window context menu item");
}
String contextMenuItemTagOpenAudioInNewWindow()
{
return WEB_UI_STRING_WITH_MNEMONIC("Open Audio in New Window", "Open _Audio in New Window", "Open Audio in New Window context menu item");
}
String contextMenuItemTagDownloadVideoToDisk()
{
return WEB_UI_STRING_WITH_MNEMONIC("Download Video", "Download _Video", "Download Video To Disk context menu item");
}
String contextMenuItemTagDownloadAudioToDisk()
{
return WEB_UI_STRING_WITH_MNEMONIC("Download Audio", "Download _Audio", "Download Audio To Disk context menu item");
}
#if !PLATFORM(GTK)
String contextMenuItemTagCopyVideoLinkToClipboard()
{
return WEB_UI_STRING("Copy Video Address", "Copy Video Address Location context menu item");
}
String contextMenuItemTagCopyAudioLinkToClipboard()
{
return WEB_UI_STRING("Copy Audio Address", "Copy Audio Address Location context menu item");
}
String contextMenuItemTagToggleMediaControls()
{
return WEB_UI_STRING("Controls", "Media Controls context menu item");
}
String contextMenuItemTagShowMediaControls()
{
return WEB_UI_STRING("Show Controls", "Show Media Controls context menu item");
}
String contextMenuItemTagHideMediaControls()
{
return WEB_UI_STRING("Hide Controls", "Hide Media Controls context menu item");
}
String contextMenuItemTagToggleMediaLoop()
{
return WEB_UI_STRING("Loop", "Media Loop context menu item");
}
String contextMenuItemTagEnterVideoFullscreen()
{
return WEB_UI_STRING("Enter Full Screen", "Video Enter Full Screen context menu item");
}
String contextMenuItemTagExitVideoFullscreen()
{
return WEB_UI_STRING_KEY("Exit Full Screen", "Exit Full Screen (context menu)", "Video Exit Full Screen context menu item");
}
#endif
String contextMenuItemTagMediaPlay()
{
return WEB_UI_STRING_WITH_MNEMONIC("Play", "_Play", "Media Play context menu item");
}
String contextMenuItemTagMediaPause()
{
return WEB_UI_STRING_WITH_MNEMONIC("Pause", "_Pause", "Media Pause context menu item");
}
String contextMenuItemTagMediaMute()
{
return WEB_UI_STRING_WITH_MNEMONIC("Mute", "_Mute", "Media Mute context menu item");
}
#if ENABLE(ACCESSIBILITY_ANIMATION_CONTROL)
String contextMenuItemTagPlayAllAnimations()
{
return WEB_UI_STRING("Play All Animations", "Play All Animations context menu item");
}
String contextMenuItemTagPauseAllAnimations()
{
return WEB_UI_STRING("Pause All Animations", "Pause All Animations context menu item");
}
String contextMenuItemTagPlayAnimation()
{
return WEB_UI_STRING("Play Animation", "Title for play animation action button or context menu item");
}
String contextMenuItemTagPauseAnimation()
{
return WEB_UI_STRING("Pause Animation", "Title for pause animation action button or context menu item");
}
#endif // ENABLE(ACCESSIBILITY_ANIMATION_CONTROL)
String contextMenuItemTagInspectElement()
{
return WEB_UI_STRING_WITH_MNEMONIC("Inspect Element", "Inspect _Element", "Inspect Element context menu item");
}
#if HAVE(TRANSLATION_UI_SERVICES)
String contextMenuItemTagTranslate(const String& selectedString)
{
auto selectedCFString = truncatedStringForMenuItem(selectedString).createCFString();
return WEB_UI_FORMAT_CFSTRING("Translate “%@”", "Translate context menu item with selected word", selectedCFString.get());
}
#endif
#if ENABLE(WRITING_TOOLS)
String contextMenuItemTagWritingTools()
{
return WEB_UI_STRING("Writing Tools", "Writing Tools context menu item");
}
#endif
#if ENABLE(UNIFIED_PDF)
String contextMenuItemPDFOpenWithPreview()
{
return WEB_UI_STRING("Open with Preview", "Open with Preview context menu item");
}
#endif
#if ENABLE(PDFJS) || ENABLE(UNIFIED_PDF)
String contextMenuItemPDFSinglePage()
{
return WEB_UI_STRING_WITH_MNEMONIC("Single Page", "_Single Page", "Single Page context menu item");
}
String contextMenuItemPDFSinglePageContinuous()
{
return WEB_UI_STRING_WITH_MNEMONIC("Single Page Continuous", "_Single Page Continuous", "Single Page Continuous context menu item");
}
String contextMenuItemPDFTwoPages()
{
return WEB_UI_STRING_WITH_MNEMONIC("Two Pages", "_Two Pages", "Two Pages context menu item");
}
String contextMenuItemPDFTwoPagesContinuous()
{
return WEB_UI_STRING_WITH_MNEMONIC("Two Pages Continuous", "_Two Pages Continuous", "Two Pages Continuous context menu item");
}
String contextMenuItemPDFZoomIn()
{
return WEB_UI_STRING_WITH_MNEMONIC("Zoom In", "_Zoom In", "Zoom In Continuous context menu item");
}
String contextMenuItemPDFZoomOut()
{
return WEB_UI_STRING_WITH_MNEMONIC("Zoom Out", "_Zoom Out", "Zoom Out context menu item");
}
String contextMenuItemPDFActualSize()
{
return WEB_UI_STRING_WITH_MNEMONIC("Actual Size", "_Actual Size", "Actual Size context menu item");
}
String contextMenuItemPDFAutoSize()
{
return WEB_UI_STRING_WITH_MNEMONIC("Automatically Resize", "_Automatically Resize", "Automatically Resize context menu item");
}
String contextMenuItemPDFNextPage()
{
return WEB_UI_STRING_WITH_MNEMONIC("Next Page", "_Next Page", "Next Page context menu item");
}
String contextMenuItemPDFPreviousPage()
{
return WEB_UI_STRING_WITH_MNEMONIC("Previous Page", "_Previous Page", "Previous Page context menu item");
}
#endif
#endif // ENABLE(CONTEXT_MENUS)
#if !PLATFORM(COCOA)
String pdfDocumentTypeDescription()
{
// Also exposed to DOM.
return WEB_UI_STRING("Portable Document Format", "Description of the primary type supported by the PDF pseudo plug-in.");
}
#endif // !PLATFORM(COCOA)
#if !PLATFORM(IOS_FAMILY)
String searchMenuNoRecentSearchesText()
{
return WEB_UI_STRING("No recent searches", "Label for only item in menu that appears when clicking on the search field image, when no searches have been performed");
}
String searchMenuRecentSearchesText()
{
return WEB_UI_STRING("Recent Searches", "label for first item in the menu that appears when clicking on the search field image, used as embedded menu title");
}
String searchMenuClearRecentSearchesText()
{
return WEB_UI_STRING("Clear Recent Searches", "menu item in Recent Searches menu that empties menu's contents");
}
#endif // !PLATFORM(IOS_FAMILY)
String AXWebAreaText()
{
return WEB_UI_STRING("HTML content", "accessibility role description for web area");
}
String AXLinkText()
{
return WEB_UI_STRING("link", "accessibility role description for link");
}
String AXListMarkerText()
{
return WEB_UI_STRING("list marker", "accessibility role description for list marker");
}
String AXImageMapText()
{
return WEB_UI_STRING("image map", "accessibility role description for image map");
}
String AXHeadingText()
{
return WEB_UI_STRING("heading", "accessibility role description for headings");
}
String AXColorWellText()
{
return WEB_UI_STRING("color well", "accessibility role description for a color well");
}
String AXDefinitionText()
{
return WEB_UI_STRING("definition", "role description of ARIA definition role");
}
String AXDescriptionListText()
{
return WEB_UI_STRING("description list", "accessibility role description of a description list");
}
String AXDescriptionListTermText()
{
return WEB_UI_STRING("term", "term word of a description list");
}
String AXDescriptionListDetailText()
{
return WEB_UI_STRING("description", "description detail");
}
String AXDetailsText()
{
return WEB_UI_STRING("details", "accessibility role description for a details element");
}
String AXSummaryText()
{
return WEB_UI_STRING("summary", "accessibility role description for a summary element");
}
String AXFooterRoleDescriptionText()
{
return WEB_UI_STRING("footer", "accessibility role description for a footer");
}
String AXSuggestionRoleDescriptionText()
{
return WEB_UI_STRING("suggestion", "accessibility role description for a suggestion element");
}
String AXFileUploadButtonText()
{
return WEB_UI_STRING("file upload button", "accessibility role description for a file upload button");
}
String AXOutputText()
{
return WEB_UI_STRING("output", "accessibility role description for an output element");
}
String AXAttachmentRoleText()
{
return WEB_UI_STRING("attachment", "accessibility role description for an attachment element");
}
String AXSearchFieldCancelButtonText()
{
return WEB_UI_STRING("cancel", "accessibility description for a search field cancel button");
}
String AXFeedText()
{
return WEB_UI_STRING("feed", "accessibility role description for a group containing a scrollable list of articles.");
}
String AXFigureText()
{
return WEB_UI_STRING("figure", "accessibility role description for a figure element.");
}
String AXEmailFieldText()
{
return WEB_UI_STRING("email field", "accessibility role description for an email field.");
}
String AXTelephoneFieldText()
{
return WEB_UI_STRING("telephone number field", "accessibility role description for a telephone number field.");
}
String AXURLFieldText()
{
return WEB_UI_STRING("URL field", "accessibility role description for a URL field.");
}
String AXDateFieldText()
{
return WEB_UI_STRING("date field", "accessibility role description for a date field.");
}
String AXTimeFieldText()
{
return WEB_UI_STRING("time field", "accessibility role description for a time field.");
}
String AXDateFieldMonthText()
{
return WEB_UI_STRING("month", "accessibility label for a date field month input.");
}
String AXDateFieldDayText()
{
return WEB_UI_STRING("day", "accessibility label for a date field day input.");
}
String AXDateFieldYearText()
{
return WEB_UI_STRING("year", "accessibility label for a date field year input.");
}
String AXTimeFieldHourText()
{
return WEB_UI_STRING("hour", "accessibility label for hour fields.");
}
String AXTimeFieldMinuteText()
{
return WEB_UI_STRING("minutes", "accessibility label for minutes fields.");
}
String AXTimeFieldSecondText()
{
return WEB_UI_STRING("seconds", "accessibility label for seconds fields.");
}
String AXTimeFieldMillisecondText()
{
return WEB_UI_STRING("milliseconds", "accessibility label for milliseconds fields.");
}
String AXDateTimeFieldText()
{
return WEB_UI_STRING("date and time field", "accessibility role description for a date and time field.");
}
String AXMonthFieldText()
{
return WEB_UI_STRING("month and year field", "accessibility role description for a month field.");
}
String AXNumberFieldText()
{
return WEB_UI_STRING("number field", "accessibility role description for a number field.");
}
String AXWeekFieldText()
{
return WEB_UI_STRING("week and year field", "accessibility role description for a time field.");
}
String AXARIAContentGroupText(StringView ariaType)
{
if (ariaType == "ARIAApplicationAlert"_s)
return WEB_UI_STRING("alert", "An ARIA accessibility group that acts as an alert.");
if (ariaType == "ARIAApplicationAlertDialog"_s)
return WEB_UI_STRING("web alert dialog", "An ARIA accessibility group that acts as an alert dialog.");
if (ariaType == "ARIAApplicationDialog"_s)
return WEB_UI_STRING("web dialog", "An ARIA accessibility group that acts as an dialog.");
if (ariaType == "ARIAApplicationLog"_s)
return WEB_UI_STRING("log", "An ARIA accessibility group that acts as a console log.");
if (ariaType == "ARIAApplicationMarquee"_s)
return WEB_UI_STRING("marquee", "An ARIA accessibility group that acts as a marquee.");
if (ariaType == "ARIAApplicationStatus"_s)
return WEB_UI_STRING("application status", "An ARIA accessibility group that acts as a status update.");
if (ariaType == "ARIAApplicationTimer"_s)
return WEB_UI_STRING("timer", "An ARIA accessibility group that acts as an updating timer.");
if (ariaType == "ARIADocument"_s)
return WEB_UI_STRING("document", "An ARIA accessibility group that acts as a document.");
if (ariaType == "ARIADocumentArticle"_s)
return WEB_UI_STRING("article", "An ARIA accessibility group that acts as an article.");
if (ariaType == "ARIADocumentNote"_s)
return WEB_UI_STRING("note", "An ARIA accessibility group that acts as a note in a document.");
if (ariaType == "ARIAWebApplication"_s)
return WEB_UI_STRING("web application", "An ARIA accessibility group that acts as an application.");
if (ariaType == "ARIALandmarkBanner"_s)
return WEB_UI_STRING("banner", "An ARIA accessibility group that acts as a banner.");
if (ariaType == "ARIALandmarkComplementary"_s)
return WEB_UI_STRING("complementary", "An ARIA accessibility group that acts as a region of complementary information.");
if (ariaType == "ARIALandmarkContentInfo"_s)
return WEB_UI_STRING("content information", "An ARIA accessibility group that contains content.");
if (ariaType == "ARIALandmarkMain"_s)
return WEB_UI_STRING("main", "An ARIA accessibility group that is the main portion of the website.");
if (ariaType == "ARIALandmarkNavigation"_s)
return WEB_UI_STRING("navigation", "An ARIA accessibility group that contains the main navigation elements of a website.");
if (ariaType == "ARIALandmarkRegion"_s)
return WEB_UI_STRING("region", "An ARIA accessibility group that acts as a distinct region in a document.");
if (ariaType == "ARIALandmarkSearch"_s)
return WEB_UI_STRING("search", "An ARIA accessibility group that contains a search feature of a website.");
if (ariaType == "ARIAUserInterfaceTooltip"_s)
return WEB_UI_STRING("tooltip", "An ARIA accessibility group that acts as a tooltip.");
if (ariaType == "ARIATabPanel"_s)
return WEB_UI_STRING("tab panel", "An ARIA accessibility group that contains the content of a tab.");
if (ariaType == "ARIADocumentMath"_s)
return WEB_UI_STRING("math", "An ARIA accessibility group that contains mathematical symbols.");
return String();
}
String AXHorizontalRuleDescriptionText()
{
return WEB_UI_STRING("separator", "accessibility role description for a horizontal rule [<hr>]");
}
String AXMarkText()
{
return WEB_UI_STRING("highlighted", "accessibility role description for a mark element");
}
String AXButtonActionVerb()
{
return WEB_UI_STRING("press", "Verb stating the action that will occur when a button is pressed, as used by accessibility");
}
String AXRadioButtonActionVerb()
{
return WEB_UI_STRING("select", "Verb stating the action that will occur when a radio button is clicked, as used by accessibility");
}
String AXTextFieldActionVerb()
{
return WEB_UI_STRING("activate", "Verb stating the action that will occur when a text field is selected, as used by accessibility");
}
String AXCheckedCheckboxActionVerb()
{
return WEB_UI_STRING("uncheck", "Verb stating the action that will occur when a checked checkbox is clicked, as used by accessibility");
}
String AXUncheckedCheckboxActionVerb()
{
return WEB_UI_STRING("check", "Verb stating the action that will occur when an unchecked checkbox is clicked, as used by accessibility");
}
String AXLinkActionVerb()
{
return WEB_UI_STRING("jump", "Verb stating the action that will occur when a link is clicked, as used by accessibility");
}
String AXMenuListPopupActionVerb()
{
notImplemented();
return "select"_s;
}
String AXMenuListActionVerb()
{
notImplemented();
return "select"_s;
}
String AXListItemActionVerb()
{
notImplemented();
return "select"_s;
}
#if ENABLE(APPLE_PAY)
String AXApplePayPlainLabel()
{
return WEB_UI_STRING("Apple Pay", "Label for the plain Apple Pay button.");
}
String AXApplePayBuyLabel()
{
return WEB_UI_STRING("Buy with Apple Pay", "Label for the buy with Apple Pay button.");
}
String AXApplePaySetupLabel()
{
return WEB_UI_STRING("Set up with Apple Pay", "Label for the set up with Apple Pay button.");
}
String AXApplePayDonateLabel()
{
return WEB_UI_STRING("Donate with Apple Pay", "Label for the donate with Apple Pay button.");
}
String AXApplePayCheckOutLabel()
{
return WEB_UI_STRING("Check out with Apple Pay", "Label for the check out with Apple Pay button.");
}
String AXApplePayBookLabel()
{
return WEB_UI_STRING("Book with Apple Pay", "Label for the book with Apple Pay button.");
}
String AXApplePaySubscribeLabel()
{
return WEB_UI_STRING("Subscribe with Apple Pay", "Label for the subcribe with Apple Pay button.");
}
#if ENABLE(APPLE_PAY_NEW_BUTTON_TYPES)
String AXApplePayReloadLabel()
{
return WEB_UI_STRING("Reload with Apple Pay", "Label for the reload with Apple Pay button.");
}
String AXApplePayAddMoneyLabel()
{
return WEB_UI_STRING("Add money with Apple Pay", "Label for the add money with Apple Pay button.");
}
String AXApplePayTopUpLabel()
{
return WEB_UI_STRING("Top up with Apple Pay", "Label for the top up with Apple Pay button.");
}
String AXApplePayOrderLabel()
{
return WEB_UI_STRING("Order with Apple Pay", "Label for the order with Apple Pay button.");
}
String AXApplePayRentLabel()
{
return WEB_UI_STRING("Rent with Apple Pay", "Label for the rent with Apple Pay button.");
}
String AXApplePaySupportLabel()
{
return WEB_UI_STRING("Support with Apple Pay", "Label for the support with Apple Pay button.");
}
String AXApplePayContributeLabel()
{
return WEB_UI_STRING("Contribute with Apple Pay", "Label for the contribute with Apple Pay button.");
}
String AXApplePayTipLabel()
{
return WEB_UI_STRING("Tip with Apple Pay", "Label for the tip with Apple Pay button.");
}
#endif
#endif
String AXAutoFillCredentialsLabel()
{
return WEB_UI_STRING("password AutoFill", "Label for the AutoFill credentials button inside a text field.");
}
String AXAutoFillContactsLabel()
{
return WEB_UI_STRING("contact info AutoFill", "Label for the AutoFill contacts button inside a text field.");
}
String AXAutoFillStrongPasswordLabel()
{
return WEB_UI_STRING("strong password AutoFill", "Label for the strong password AutoFill button inside a text field.");
}
String AXAutoFillCreditCardLabel()
{
return WEB_UI_STRING("credit card AutoFill", "Label for the credit card AutoFill button inside a text field.");
}
String AXAutoFillLoadingLabel()
{
return WEB_UI_STRING("loading AutoFill", "Label for the loading AutoFill button inside a text field.");
}
String autoFillStrongPasswordLabel()
{
return WEB_UI_STRING("Strong Password", "Label for strong password.");
}
String missingPluginText()
{
return WEB_UI_STRING("Missing Plug-in", "Label text to be used when a plugin is missing");
}
String crashedPluginText()
{
return WEB_UI_STRING("Plug-in Failure", "Label text to be used if plugin host process has crashed");
}
String blockedPluginByContentSecurityPolicyText()
{
return WEB_UI_STRING_KEY("Blocked Plug-in", "Blocked Plug-In (Blocked by page's Content Security Policy)", "Label text to be used if plugin is blocked by a page's Content Security Policy");
}
String insecurePluginVersionText()
{
return WEB_UI_STRING_KEY("Blocked Plug-in", "Blocked Plug-In (Insecure plug-in)", "Label text to be used when an insecure plug-in version was blocked from loading");
}
String unsupportedPluginText()
{
return WEB_UI_STRING_KEY("Unsupported Plug-in", "Unsupported Plug-In", "Label text to be used when an unsupported plug-in was blocked from loading");
}
String pluginTooSmallText()
{
return WEB_UI_STRING_KEY("Plug-In too small", "Plug-In too small", "Label text to be used when a plug-in was blocked from loading because it was too small");
}
String multipleFileUploadText(unsigned numberOfFiles)
{
return WEB_UI_FORMAT_STRING("%d files", "Label to describe the number of files selected in a file upload control that allows multiple files", numberOfFiles);
}
String unknownFileSizeText()
{
return WEB_UI_STRING_KEY("Unknown", "Unknown (filesize)", "Unknown filesize FTP directory listing item");
}
String imageTitle(const String& filename, const IntSize& size)
{
#if PLATFORM(COCOA)
auto locale = adoptCF(CFLocaleCopyCurrent());
auto formatter = adoptCF(CFNumberFormatterCreate(0, locale.get(), kCFNumberFormatterDecimalStyle));
int widthInt = size.width();
auto width = adoptCF(CFNumberCreate(0, kCFNumberIntType, &widthInt));
auto widthString = adoptCF(CFNumberFormatterCreateStringWithNumber(0, formatter.get(), width.get()));
int heightInt = size.height();
auto height = adoptCF(CFNumberCreate(0, kCFNumberIntType, &heightInt));
auto heightString = adoptCF(CFNumberFormatterCreateStringWithNumber(0, formatter.get(), height.get()));
return WEB_UI_FORMAT_CFSTRING("%@ %@×%@ pixels", "window title for a standalone image (uses multiplication symbol, not x)", filename.createCFString().get(), widthString.get(), heightString.get());
#elif PLATFORM(WIN)
return WEB_UI_FORMAT_STRING("%s %d×%d pixels", "window title for a standalone image (uses multiplication symbol, not x)", filename.wideCharacters().data(), size.width(), size.height());
#elif USE(GLIB)
return WEB_UI_FORMAT_STRING("%s %d×%d pixels", "window title for a standalone image (uses multiplication symbol, not x)", filename.utf8().data(), size.width(), size.height());
#else
return makeStringByReplacingAll(WEB_UI_FORMAT_STRING("<filename> %d×%d pixels", "window title for a standalone image (uses multiplication symbol, not x)", size.width(), size.height()), "<filename>"_s, filename);
#endif
}
String mediaElementLoadingStateText()
{
return WEB_UI_STRING("Loading…", "Media controller status message when the media is loading");
}
String mediaElementLiveBroadcastStateText()
{
return WEB_UI_STRING("Live Broadcast", "Media controller status message when watching a live broadcast");
}
String localizedMediaControlElementString(const String& name)
{
if (name == "AudioElement"_s)
return WEB_UI_STRING("audio playback", "accessibility label for audio element controller");
if (name == "VideoElement"_s)
return WEB_UI_STRING("video playback", "accessibility label for video element controller");
if (name == "MuteButton"_s)
return WEB_UI_STRING("mute", "accessibility label for mute button");
if (name == "UnMuteButton"_s)
return WEB_UI_STRING("unmute", "accessibility label for turn mute off button");
if (name == "PlayButton"_s)
return WEB_UI_STRING("play", "accessibility label for play button");
if (name == "PauseButton"_s)
return WEB_UI_STRING("pause", "accessibility label for pause button");
if (name == "Slider"_s)
return WEB_UI_STRING("movie time", "accessibility label for timeline slider");
if (name == "SliderThumb"_s)
return WEB_UI_STRING("timeline slider thumb", "accessibility label for timeline thumb");
if (name == "RewindButton"_s)
return WEB_UI_STRING("back 30 seconds", "accessibility label for seek back 30 seconds button");
if (name == "ReturnToRealtimeButton"_s)
return WEB_UI_STRING("return to real time", "accessibility label for return to real time button");
if (name == "CurrentTimeDisplay"_s)
return WEB_UI_STRING("elapsed time", "accessibility label for elapsed time display");
if (name == "TimeRemainingDisplay"_s)
return WEB_UI_STRING("remaining time", "accessibility label for time remaining display");
if (name == "StatusDisplay"_s)
return WEB_UI_STRING("status", "accessibility label for movie status");
if (name == "EnterFullscreenButton"_s)
return WEB_UI_STRING("enter full screen", "accessibility label for enter full screen button");
if (name == "ExitFullscreenButton"_s)
return WEB_UI_STRING("exit full screen", "accessibility label for exit full screen button");
if (name == "SeekForwardButton"_s)
return WEB_UI_STRING("fast forward", "accessibility label for fast forward button");
if (name == "SeekBackButton"_s)
return WEB_UI_STRING("fast reverse", "accessibility label for fast reverse button");
if (name == "ShowClosedCaptionsButton"_s)
return WEB_UI_STRING("show closed captions", "accessibility label for show closed captions button");
if (name == "HideClosedCaptionsButton"_s)
return WEB_UI_STRING("hide closed captions", "accessibility label for hide closed captions button");
// FIXME: the ControlsPanel container should never be visible in the accessibility hierarchy.
if (name == "ControlsPanel"_s)
return String();
ASSERT_NOT_REACHED();
return String();
}
String localizedMediaControlElementHelpText(const String& name)
{
if (name == "AudioElement"_s)
return WEB_UI_STRING("audio element playback controls and status display", "accessibility help text for audio element controller");
if (name == "VideoElement"_s)
return WEB_UI_STRING("video element playback controls and status display", "accessibility help text for video element controller");
if (name == "MuteButton"_s)
return WEB_UI_STRING("mute audio tracks", "accessibility help text for mute button");
if (name == "UnMuteButton"_s)
return WEB_UI_STRING("unmute audio tracks", "accessibility help text for un mute button");
if (name == "PlayButton"_s)
return WEB_UI_STRING("begin playback", "accessibility help text for play button");
if (name == "PauseButton"_s)
return WEB_UI_STRING("pause playback", "accessibility help text for pause button");
if (name == "Slider"_s)
return WEB_UI_STRING("movie time scrubber", "accessibility help text for timeline slider");
if (name == "SliderThumb"_s)
return WEB_UI_STRING("movie time scrubber thumb", "accessibility help text for timeline slider thumb");
if (name == "RewindButton"_s)
return WEB_UI_STRING("seek movie back 30 seconds", "accessibility help text for jump back 30 seconds button");
if (name == "ReturnToRealtimeButton"_s)
return WEB_UI_STRING("resume real time streaming", "accessibility help text for return streaming movie to real time button");
if (name == "CurrentTimeDisplay"_s)
return WEB_UI_STRING("current movie time in seconds", "accessibility help text for elapsed time display");
if (name == "TimeRemainingDisplay"_s)
return WEB_UI_STRING("number of seconds of movie remaining", "accessibility help text for remaining time display");
if (name == "StatusDisplay"_s)
return WEB_UI_STRING("current movie status", "accessibility help text for movie status display");
if (name == "SeekBackButton"_s)
return WEB_UI_STRING("seek quickly back", "accessibility help text for fast rewind button");
if (name == "SeekForwardButton"_s)
return WEB_UI_STRING("seek quickly forward", "accessibility help text for fast forward button");
if (name == "FullscreenButton"_s)
return WEB_UI_STRING("Play movie in full screen mode", "accessibility help text for enter full screen button");
if (name == "ShowClosedCaptionsButton"_s)
return WEB_UI_STRING("start displaying closed captions", "accessibility help text for show closed captions button");
if (name == "HideClosedCaptionsButton"_s)
return WEB_UI_STRING("stop displaying closed captions", "accessibility help text for hide closed captions button");
// The description of this button is descriptive enough that it doesn't require help text.
if (name == "EnterFullscreenButton"_s)
return String();
ASSERT_NOT_REACHED();
return String();
}
String localizedMediaTimeDescription(float time)
{
if (!std::isfinite(time))
return WEB_UI_STRING("indefinite time", "accessibility help text for an indefinite media controller time value");
int seconds = static_cast<int>(std::abs(time));
int days = seconds / (60 * 60 * 24);
int hours = seconds / (60 * 60);
int minutes = (seconds / 60) % 60;
seconds %= 60;
if (days)
return WEB_UI_FORMAT_STRING("%1$d days %2$d hours %3$d minutes %4$d seconds", "accessibility help text for media controller time value >= 1 day", days, hours, minutes, seconds);
if (hours)
return WEB_UI_FORMAT_STRING("%1$d hours %2$d minutes %3$d seconds", "accessibility help text for media controller time value >= 60 minutes", hours, minutes, seconds);
if (minutes)
return WEB_UI_FORMAT_STRING("%1$d minutes %2$d seconds", "accessibility help text for media controller time value >= 60 seconds", minutes, seconds);
return WEB_UI_FORMAT_STRING("%1$d seconds", "accessibility help text for media controller time value < 60 seconds", seconds);
}
String validationMessageValueMissingText()
{
return WEB_UI_STRING("Fill out this field", "Validation message for required form control elements that have no value");
}
String validationMessageValueMissingForCheckboxText()
{
return WEB_UI_STRING("Select this checkbox", "Validation message for required checkboxes that have not been selected");
}
String validationMessageValueMissingForFileText()
{
return WEB_UI_STRING("Select a file", "Validation message for required file inputs that have no value");
}
String validationMessageValueMissingForMultipleFileText()
{
return validationMessageValueMissingForFileText();
}
String validationMessageValueMissingForRadioText()
{
return WEB_UI_STRING("Select one of these options", "Validation message for required radio boxes that have no selection");
}
String validationMessageValueMissingForSelectText()
{
return WEB_UI_STRING("Select an item in the list", "Validation message for required menu list controls that have no selection");
}
String validationMessageValueMissingForSwitchText()
{
return WEB_UI_STRING("Tap this switch", "Validation message for required switches that are not on");
}
String validationMessageTypeMismatchText()
{
return WEB_UI_STRING("Invalid value", "Validation message for input form controls with a value not matching type");
}
String validationMessageTypeMismatchForEmailText()
{
return WEB_UI_STRING("Enter an email address", "Validation message for input form controls of type 'email' that have an invalid value");
}
String validationMessageTypeMismatchForMultipleEmailText()
{
return validationMessageTypeMismatchForEmailText();
}
String validationMessageTypeMismatchForURLText()
{
return WEB_UI_STRING("Enter a URL", "Validation message for input form controls of type 'url' that have an invalid value");
}
String validationMessagePatternMismatchText()
{
return WEB_UI_STRING("Match the requested format", "Validation message for input form controls requiring a constrained value according to pattern");
}
String validationMessagePatternMismatchText(const String& title)
{
#if PLATFORM(COCOA)
return WEB_UI_FORMAT_CFSTRING("Match the requested format: %@", "Validation message for input form controls requiring a constrained value according to pattern followed by a website-provided description of the pattern", title.createCFString().get());
#elif USE(GLIB)
return WEB_UI_FORMAT_STRING("Match the requested format: %s", "Validation message for input form controls requiring a constrained value according to pattern followed by a website-provided description of the pattern", title.utf8().data());
#else
UNUSED_PARAM(title);
return validationMessagePatternMismatchText();
#endif
}
#if !PLATFORM(GTK)
String validationMessageTooShortText(int, int minLength)
{
return WEB_UI_FORMAT_STRING("Use at least %d characters", "Validation message for form control elements with a value shorter than minimum allowed length", minLength);
}
#if !PLATFORM(COCOA)
String validationMessageTooLongText(int, int maxLength)
{
return WEB_UI_FORMAT_STRING("Use no more than %d characters", "Validation message for form control elements with a value shorter than maximum allowed length", maxLength);
}
#endif
#endif
String validationMessageRangeUnderflowText(const String& minimum)
{
#if PLATFORM(COCOA)
return WEB_UI_FORMAT_CFSTRING("Value must be greater than or equal to %@", "Validation message for input form controls with value lower than allowed minimum", minimum.createCFString().get());
#elif USE(GLIB)
return WEB_UI_FORMAT_STRING("Value must be greater than or equal to %s", "Validation message for input form controls with value lower than allowed minimum", minimum.utf8().data());
#else
UNUSED_PARAM(minimum);
return WEB_UI_STRING("range underflow", "Validation message for input form controls with value lower than allowed minimum");
#endif
}
String validationMessageRangeOverflowText(const String& maximum)
{
#if PLATFORM(COCOA)
return WEB_UI_FORMAT_CFSTRING("Value must be less than or equal to %@", "Validation message for input form controls with value higher than allowed maximum", maximum.createCFString().get());
#elif USE(GLIB)
return WEB_UI_FORMAT_STRING("Value must be less than or equal to %s", "Validation message for input form controls with value higher than allowed maximum", maximum.utf8().data());
#else
UNUSED_PARAM(maximum);
return WEB_UI_STRING("range overflow", "Validation message for input form controls with value higher than allowed maximum");
#endif
}
String validationMessageStepMismatchText(const String&, const String&)
{
return WEB_UI_STRING("Enter a valid value", "Validation message for input form controls with value not respecting the step attribute");
}
String validationMessageBadInputForNumberText()
{
return WEB_UI_STRING("Enter a number", "Validation message for number fields where the user entered a non-number string");
}
String clickToExitFullScreenText()
{
return WEB_UI_STRING("Click to Exit Full Screen", "Message to display in browser window when in webkit full screen mode.");
}
#if ENABLE(VIDEO)
String trackNoLabelText()
{
return WEB_UI_STRING_KEY("Unknown", "Unknown (audio/text track)", "Menu item label for a audio/text track that has no other name.");
}
String textTrackOffMenuItemText()
{
return WEB_UI_STRING_KEY("Off", "Off (text track)", "Menu item label for the track that represents disabling closed captions.");
}
String textTrackAutomaticMenuItemText()
{
return WEB_UI_STRING_KEY("Auto (Recommended)", "Auto (Recommended) (text track)", "Menu item label for automatic track selection behavior.");
}
#if PLATFORM(COCOA)
String addTrackLabelAsSuffix(const String& text, const String& label)
{
return WEB_UI_FORMAT_CFSTRING_KEY("%@ (%@)", "%@ (%@) (audio/text track)", "Audio/Text track display name format that includes the label and language of the track, in the form of 'Language (Label)'.", text.createCFString().get(), label.createCFString().get());
}
String textTrackKindClosedCaptionsDisplayName()
{
return WEB_UI_CFSTRING_KEY("CC", "CC (text track)", "Display name for closed captions text tracks.");
}
String addTextTrackKindClosedCaptionsSuffix(const String& text)
{
if (text.isEmpty())
return textTrackKindClosedCaptionsDisplayName();
return WEB_UI_FORMAT_CFSTRING_KEY("%@ CC", "%@ CC (text track)", "Closed captions text track display name format that includes the language and/or locale (e.g. 'English CC').", text.createCFString().get());
}
String textTrackKindCaptionsDisplayName()
{
return WEB_UI_CFSTRING_KEY("Captions", "Captions (text track)", "Display name for text track kind 'captions'.");
}
String addTextTrackKindCaptionsSuffix(const String& text)
{
if (text.isEmpty())
return textTrackKindCaptionsDisplayName();
return WEB_UI_FORMAT_CFSTRING_KEY("%@ Captions", "%@ Captions (text track)", "Captions text track display name format that includes the language and/or locale (e.g. 'English Captions').", text.createCFString().get());
}
String textTrackKindDescriptionsDisplayName()
{
return WEB_UI_CFSTRING_KEY("Descriptions", "Descriptions (text track)", "Display name for text track kind 'descriptions'.");
}
String addTextTrackKindDescriptionsSuffix(const String& text)
{
if (text.isEmpty())
return textTrackKindDescriptionsDisplayName();
return WEB_UI_FORMAT_CFSTRING_KEY("%@ Descriptions", "%@ Descriptions (text track)", "Descriptions text track display name format that includes the language and/or locale (e.g. 'English Descriptions').", text.createCFString().get());
}
String textTrackKindChaptersDisplayName()
{
return WEB_UI_CFSTRING_KEY("Chapters", "Chapters (text track)", "Display name for text track kind 'chapters'.");
}
String addTextTrackKindChaptersSuffix(const String& text)
{
if (text.isEmpty())
return textTrackKindChaptersDisplayName();
return WEB_UI_FORMAT_CFSTRING_KEY("%@ Chapters", "%@ Chapters (text track)", "Chapters text track display name format that includes the language and/or locale (e.g. 'English Chapters').", text.createCFString().get());
}
String textTrackKindMetadataDisplayName()
{
return WEB_UI_CFSTRING_KEY("Metadata", "Metadata (text track)", "Display name for text track kind 'metadata'.");
}
String addTextTrackKindMetadataSuffix(const String& text)
{
if (text.isEmpty())
return textTrackKindMetadataDisplayName();
return WEB_UI_FORMAT_CFSTRING_KEY("%@ Metadata", "%@ Metadata (text track)", "Metadata text track display name format that includes the language and/or locale (e.g. 'English Metadata').", text.createCFString().get());
}
String textTrackKindSDHDisplayName()
{
return WEB_UI_CFSTRING_KEY("SDH", "SDH (text track)", "Display name for SDH (i.e. deaf and/or hard of hearing) text tracks.");
}
String addTextTrackKindSDHSuffix(const String& text)
{
if (text.isEmpty())
return textTrackKindSDHDisplayName();
return WEB_UI_FORMAT_CFSTRING_KEY("%@ SDH", "%@ SDH (text track)", "SDH (i.e. deaf and/or hard of hearing) text track display name format that includes the language and/or locale (e.g. 'English SDH').", text.createCFString().get());
}
String textTrackKindEasyReaderDisplayName()
{
return WEB_UI_CFSTRING_KEY("Easy Reader", "Easy Reader (text track)", "Display name for easy reader (i.e. 3rd-grade level) text tracks.");
}
String addTextTrackKindEasyReaderSuffix(const String& text)
{
if (text.isEmpty())
return textTrackKindEasyReaderDisplayName();
return WEB_UI_FORMAT_CFSTRING_KEY("%@ Easy Reader", "%@ Easy Reader (text track)", "Easy Reader (i.e. 3rd-grade level) text track display name format that includes the language and/or locale (e.g. 'English Easy Reader').", text.createCFString().get());
}
String textTrackKindForcedDisplayName()
{
return WEB_UI_CFSTRING_KEY("Forced", "Forced (text track)", "Display name for text track kind 'forced'.");
}
String addTextTrackKindForcedSuffix(const String& text)
{
if (text.isEmpty())
return textTrackKindForcedDisplayName();
return WEB_UI_FORMAT_CFSTRING_KEY("%@ Forced", "%@ Forced (text track)", "Forced text track display name format that includes the language and/or locale (e.g. 'English Forced').", text.createCFString().get());
}
String audioTrackKindDescriptionsDisplayName()
{
return WEB_UI_CFSTRING_KEY("Descriptions", "Descriptions (audio track)", "Display name for audio track kind 'descriptions'.");
}
String addAudioTrackKindDescriptionsSuffix(const String& text)
{
if (text.isEmpty())
return audioTrackKindDescriptionsDisplayName();
return WEB_UI_FORMAT_CFSTRING_KEY("%@ Descriptions", "%@ Descriptions (audio track)", "Descriptions audio track display name format that includes the language and/or locale (e.g. 'English Descriptions').", text.createCFString().get());
}
String audioTrackKindCommentaryDisplayName()
{
return WEB_UI_CFSTRING_KEY("Commentary", "Commentary (audio track)", "Display name for audio track kind 'commentary'.");
}
String addAudioTrackKindCommentarySuffix(const String& text)
{
if (text.isEmpty())
return audioTrackKindCommentaryDisplayName();
return WEB_UI_FORMAT_CFSTRING_KEY("%@ Commentary", "%@ Commentary (audio track)", "Commentary audio track display name format that includes the language and/or locale (e.g. 'English Commentary').", text.createCFString().get());
}
#endif // PLATFORM(COCOA)
String contextMenuItemTagShowMediaStats()
{
return WEB_UI_STRING("Show Media Stats", "Media stats context menu item");
}
#endif // ENABLE(VIDEO)
#if PLATFORM(COCOA)
String webCryptoMasterKeyKeychainLabel(const String& localizedApplicationName)
{
return WEB_UI_FORMAT_CFSTRING("%@ WebCrypto Master Key", "Name of application's single WebCrypto master key in Keychain", localizedApplicationName.createCFString().get());
}
String webCryptoMasterKeyKeychainComment()
{
return WEB_UI_STRING("Used to encrypt WebCrypto keys in persistent storage, such as IndexedDB", "Description of WebCrypto master keys in Keychain");
}
#endif
#if PLATFORM(WATCHOS)
String numberPadOKButtonTitle()
{
return WEB_UI_STRING_KEY("OK", "OK (OK button title in extra zoomed number pad)", "Title of the OK button for the number pad in zoomed form controls.");
}
String formControlCancelButtonTitle()
{
return WEB_UI_STRING("Cancel", "Cancel");
}
String formControlHideButtonTitle()
{
return WEB_UI_STRING("Hide", "Title of the Hide button for zoomed form controls.");
}
String formControlGoButtonTitle()
{
return WEB_UI_STRING("Go", "Title of the Go button for zoomed form controls.");
}
String formControlSearchButtonTitle()
{
return WEB_UI_STRING("Search", "Title of the Search button for zoomed form controls.");
}
String datePickerSetButtonTitle()
{
return WEB_UI_STRING_KEY("Set", "Set (Button below date picker for extra zoom mode)", "Set button below date picker");
}
String datePickerDayLabelTitle()
{
return WEB_UI_STRING_KEY("DAY", "DAY (Date picker for extra zoom mode)", "Day label in date picker");
}
String datePickerMonthLabelTitle()
{
return WEB_UI_STRING_KEY("MONTH", "MONTH (Date picker for extra zoom mode)", "Month label in date picker");
}
String datePickerYearLabelTitle()
{
return WEB_UI_STRING_KEY("YEAR", "YEAR (Date picker for extra zoom mode)", "Year label in date picker");
}
#endif
#if ENABLE(INPUT_TYPE_WEEK_PICKER)
String inputWeekLabel(const DateComponents& dateComponents)
{
int week = dateComponents.week();
int year = dateComponents.fullYear();
return WEB_UI_FORMAT_STRING("Week %1$d, %2$d", "Week of year input type label with week number and year", week, year);
}
#endif
#if USE(SOUP)
String unacceptableTLSCertificate()
{
return WEB_UI_STRING("Unacceptable TLS certificate", "Unacceptable TLS certificate error");
}
#endif
#if ENABLE(WEB_AUTHN)
// On macOS, Touch ID prompt is not guaranteed to show on top of the UI client, and therefore additional
// information is provided to help users to make decisions.
String makeCredentialTouchIDPromptTitle(const String& bundleName, const String& domain)
{
return WEB_UI_FORMAT_CFSTRING("“%@” would like to use Touch ID for “%@”.", "Allow the specified bundle to use Touch ID to sign in to the specified website on this device", bundleName.createCFString().get(), domain.createCFString().get());
}
String getAssertionTouchIDPromptTitle(const String& bundleName, const String& domain)
{
return WEB_UI_FORMAT_CFSTRING("“%@” would like to sign in to “%@”.", "Allow the specified bundle to sign in to the specified website", bundleName.createCFString().get(), domain.createCFString().get());
}
String genericTouchIDPromptTitle()
{
return WEB_UI_STRING("Continue with Touch ID.", "Continue with Touch ID.");
}
#endif // ENABLE(WEB_AUTHN)
String pdfPasswordFormTitle()
{
return WEB_UI_STRING("This document is password protected.", "Title when a PDF needs a password to be unlocked");
}
String pdfPasswordFormSubtitle()
{
return WEB_UI_STRING("Please enter the password below.", "Subtitle when a PDF needs a password to be unlocked");
}
String pdfPasswordFormInvalidPasswordSubtitle()
{
return WEB_UI_STRING("Invalid Password", "Message when a PDF fails to unlock with the given password");
}
String contextMenuItemTagCopyLinkWithHighlight()
{
return WEB_UI_STRING("Copy Link with Highlight", "Copy link with highlight context menu item");
}
#if ENABLE(LINEAR_MEDIA_PLAYER)
String fullscreenControllerViewSpatial()
{
return WEB_UI_STRING("View Spatial", "Title for View Spatial action button while in fullscreen");
}
String fullscreenControllerViewImmersive()
{
return WEB_UI_STRING("View Immersive", "Title for View Immersive action button while in fullscreen");
}
#endif
} // namespace WebCore
|