OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003, 2006, 2009, 2011, 2012, 2013 Apple Inc. All rights reser
ved. | 2 * Copyright (C) 2003, 2006, 2009, 2011, 2012, 2013 Apple Inc. All rights reser
ved. |
3 * Copyright (C) 2010 Igalia S.L | 3 * Copyright (C) 2010 Igalia S.L |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 25 matching lines...) Expand all Loading... |
36 String inputElementAltText(); | 36 String inputElementAltText(); |
37 String resetButtonDefaultLabel(); | 37 String resetButtonDefaultLabel(); |
38 String searchableIndexIntroduction(); | 38 String searchableIndexIntroduction(); |
39 String submitButtonDefaultLabel(); | 39 String submitButtonDefaultLabel(); |
40 String fileButtonChooseFileLabel(); | 40 String fileButtonChooseFileLabel(); |
41 String fileButtonChooseMultipleFilesLabel(); | 41 String fileButtonChooseMultipleFilesLabel(); |
42 String fileButtonNoFileSelectedLabel(); | 42 String fileButtonNoFileSelectedLabel(); |
43 String fileButtonNoFilesSelectedLabel(); | 43 String fileButtonNoFilesSelectedLabel(); |
44 String defaultDetailsSummaryText(); | 44 String defaultDetailsSummaryText(); |
45 | 45 |
46 String contextMenuItemTagOpenLinkInNewWindow(); | |
47 String contextMenuItemTagDownloadLinkToDisk(); | |
48 String contextMenuItemTagCopyLinkToClipboard(); | |
49 String contextMenuItemTagOpenImageInNewWindow(); | |
50 String contextMenuItemTagDownloadImageToDisk(); | |
51 String contextMenuItemTagCopyImageToClipboard(); | |
52 String contextMenuItemTagOpenFrameInNewWindow(); | |
53 String contextMenuItemTagCopy(); | |
54 String contextMenuItemTagGoBack(); | |
55 String contextMenuItemTagGoForward(); | |
56 String contextMenuItemTagStop(); | |
57 String contextMenuItemTagReload(); | |
58 String contextMenuItemTagCut(); | |
59 String contextMenuItemTagPaste(); | |
60 String contextMenuItemTagNoGuessesFound(); | |
61 String contextMenuItemTagIgnoreSpelling(); | |
62 String contextMenuItemTagLearnSpelling(); | |
63 String contextMenuItemTagSearchWeb(); | |
64 String contextMenuItemTagLookUpInDictionary(const String& selectedString); | |
65 String contextMenuItemTagOpenLink(); | |
66 String contextMenuItemTagIgnoreGrammar(); | |
67 String contextMenuItemTagSpellingMenu(); | |
68 String contextMenuItemTagShowSpellingPanel(bool show); | |
69 String contextMenuItemTagCheckSpelling(); | |
70 String contextMenuItemTagCheckSpellingWhileTyping(); | |
71 String contextMenuItemTagCheckGrammarWithSpelling(); | |
72 String contextMenuItemTagFontMenu(); | |
73 String contextMenuItemTagBold(); | |
74 String contextMenuItemTagItalic(); | |
75 String contextMenuItemTagUnderline(); | |
76 String contextMenuItemTagOutline(); | |
77 String contextMenuItemTagWritingDirectionMenu(); | |
78 String contextMenuItemTagTextDirectionMenu(); | |
79 String contextMenuItemTagDefaultDirection(); | |
80 String contextMenuItemTagLeftToRight(); | |
81 String contextMenuItemTagRightToLeft(); | |
82 String contextMenuItemTagOpenVideoInNewWindow(); | |
83 String contextMenuItemTagOpenAudioInNewWindow(); | |
84 String contextMenuItemTagCopyVideoLinkToClipboard(); | |
85 String contextMenuItemTagCopyAudioLinkToClipboard(); | |
86 String contextMenuItemTagToggleMediaControls(); | |
87 String contextMenuItemTagToggleMediaLoop(); | |
88 String contextMenuItemTagEnterVideoFullscreen(); | |
89 String contextMenuItemTagMediaPlay(); | |
90 String contextMenuItemTagMediaPause(); | |
91 String contextMenuItemTagMediaMute(); | |
92 String contextMenuItemTagInspectElement(); | |
93 | |
94 String searchMenuNoRecentSearchesText(); | 46 String searchMenuNoRecentSearchesText(); |
95 String searchMenuRecentSearchesText(); | 47 String searchMenuRecentSearchesText(); |
96 String searchMenuClearRecentSearchesText(); | 48 String searchMenuClearRecentSearchesText(); |
97 | 49 |
98 String AXWebAreaText(); | 50 String AXWebAreaText(); |
99 String AXLinkText(); | 51 String AXLinkText(); |
100 String AXListMarkerText(); | 52 String AXListMarkerText(); |
101 String AXImageMapText(); | 53 String AXImageMapText(); |
102 String AXHeadingText(); | 54 String AXHeadingText(); |
103 String AXDefinitionText(); | 55 String AXDefinitionText(); |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
184 | 136 |
185 String clickToExitFullScreenText(); | 137 String clickToExitFullScreenText(); |
186 | 138 |
187 String textTrackSubtitlesText(); | 139 String textTrackSubtitlesText(); |
188 String textTrackOffText(); | 140 String textTrackOffText(); |
189 String textTrackNoLabelText(); | 141 String textTrackNoLabelText(); |
190 | 142 |
191 } // namespace WebCore | 143 } // namespace WebCore |
192 | 144 |
193 #endif // LocalizedStrings_h | 145 #endif // LocalizedStrings_h |
OLD | NEW |