OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2003, 2006, 2009, 2010, 2012, 2013 Apple Inc. All rights reserv
ed. | 2 * Copyright (C) 2003, 2006, 2009, 2010, 2012, 2013 Apple Inc. All rights reserv
ed. |
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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 String contextMenuItemTagCut() | 205 String contextMenuItemTagCut() |
206 { | 206 { |
207 return WEB_UI_STRING("Cut", "Cut context menu item"); | 207 return WEB_UI_STRING("Cut", "Cut context menu item"); |
208 } | 208 } |
209 | 209 |
210 String contextMenuItemTagPaste() | 210 String contextMenuItemTagPaste() |
211 { | 211 { |
212 return WEB_UI_STRING("Paste", "Paste context menu item"); | 212 return WEB_UI_STRING("Paste", "Paste context menu item"); |
213 } | 213 } |
214 | 214 |
215 #if PLATFORM(QT) | |
216 String contextMenuItemTagSelectAll() | |
217 { | |
218 notImplemented(); | |
219 return "Select All"; | |
220 } | |
221 #endif | |
222 | |
223 String contextMenuItemTagNoGuessesFound() | 215 String contextMenuItemTagNoGuessesFound() |
224 { | 216 { |
225 return WEB_UI_STRING("No Guesses Found", "No Guesses Found context menu item
"); | 217 return WEB_UI_STRING("No Guesses Found", "No Guesses Found context menu item
"); |
226 } | 218 } |
227 | 219 |
228 String contextMenuItemTagIgnoreSpelling() | 220 String contextMenuItemTagIgnoreSpelling() |
229 { | 221 { |
230 return WEB_UI_STRING("Ignore Spelling", "Ignore Spelling context menu item")
; | 222 return WEB_UI_STRING("Ignore Spelling", "Ignore Spelling context menu item")
; |
231 } | 223 } |
232 | 224 |
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1063 { | 1055 { |
1064 return WEB_UI_STRING("Snapshotted Plug-In", "Title of the label to show on a
snapshotted plug-in"); | 1056 return WEB_UI_STRING("Snapshotted Plug-In", "Title of the label to show on a
snapshotted plug-in"); |
1065 } | 1057 } |
1066 | 1058 |
1067 String snapshottedPlugInLabelSubtitle() | 1059 String snapshottedPlugInLabelSubtitle() |
1068 { | 1060 { |
1069 return WEB_UI_STRING("Click to restart", "Subtitle of the label to show on a
snapshotted plug-in"); | 1061 return WEB_UI_STRING("Click to restart", "Subtitle of the label to show on a
snapshotted plug-in"); |
1070 } | 1062 } |
1071 | 1063 |
1072 } // namespace WebCore | 1064 } // namespace WebCore |
OLD | NEW |