Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1033)

Side by Side Diff: ui/strings/ui_strings.grd

Issue 2518183002: Moved action verbs out of Blink. (Closed)
Patch Set: Added missing braces. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/accessibility/platform/ax_platform_node_win.cc ('k') | ui/views/controls/button/button.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 2
3 <!-- This file contains definitions of resources that will be translated for 3 <!-- This file contains definitions of resources that will be translated for
4 each locale. Specifically, these are UI strings that are used by app/ that 4 each locale. Specifically, these are UI strings that are used by app/ that
5 need to be translated for each locale.--> 5 need to be translated for each locale.-->
6 6
7 <grit base_dir="." latest_public_release="0" current_release="1" 7 <grit base_dir="." latest_public_release="0" current_release="1"
8 output_all_resource_defines="false" source_lang_id="en" enc_check="möl"> 8 output_all_resource_defines="false" source_lang_id="en" enc_check="möl">
9 <outputs> 9 <outputs>
10 <!-- TODO add each of your output files. Modify the three below, and add 10 <!-- TODO add each of your output files. Modify the three below, and add
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 <message name="IDS_OPEN_FILES_DIALOG_TITLE" desc="The default title for th e Open File file chooser dialog (multiple files)."> 310 <message name="IDS_OPEN_FILES_DIALOG_TITLE" desc="The default title for th e Open File file chooser dialog (multiple files).">
311 Open Files 311 Open Files
312 </message> 312 </message>
313 <message name="IDS_SAVEAS_ALL_FILES" desc="Save As dialog box default text "> 313 <message name="IDS_SAVEAS_ALL_FILES" desc="Save As dialog box default text ">
314 All Files 314 All Files
315 </message> 315 </message>
316 <message name="IDS_SELECT_UPLOAD_FOLDER_DIALOG_UPLOAD_BUTTON" desc="Button label text for Upload Folder dialog"> 316 <message name="IDS_SELECT_UPLOAD_FOLDER_DIALOG_UPLOAD_BUTTON" desc="Button label text for Upload Folder dialog">
317 Upload 317 Upload
318 </message> 318 </message>
319 319
320 <!--Accessible name/action strings--> 320 <!--Accessible action strings-->
321 <message name="IDS_APP_ACCACTION_PRESS" desc="The accessible default actio n for a button."> 321 <message name="IDS_AX_ACTIVATE_ACTION_VERB" desc="Verb stating the action that will occur when an element such as a text field is selected, as used by acc essibility.">
322 Press 322 activate
323 </message> 323 </message>
324 <message name="IDS_AX_CHECK_ACTION_VERB" desc="Verb stating the action tha t will occur when an unchecked checkbox is clicked, as used by accessibility.">
325 check
326 </message>
327 <message name="IDS_AX_CLICK_ACTION_VERB" desc="Verb stating the action tha t will occur when clicking on a generic clickable object, when we don't know wha t that action is, as used by accessibility.">
328 click
329 </message>
330 <message name="IDS_AX_JUMP_ACTION_VERB" desc="Verb stating the action that will occur when an element such as an in-page link is activated, as used by acc essibility.">
331 jump
332 </message>
333 <message name="IDS_AX_OPEN_ACTION_VERB" desc="Verb stating the action that will occur when an element such as a pop-up button is pressed, as used by acces sibility.">
334 open
335 </message>
336 <message name="IDS_AX_PRESS_ACTION_VERB" desc="Verb stating the action that will occur when an element such as a button is pressed, as used by accessibility.">
337 press
338 </message>
339 <message name="IDS_AX_SELECT_ACTION_VERB" desc="Verb stating the action th at will occur when an element such as a radio button is selected, as used by acc essibility.">
340 select
341 </message>
342 <message name="IDS_AX_UNCHECK_ACTION_VERB" desc="Verb stating the action t hat will occur when a checked checkbox is clicked, as used by accessibility.">
343 uncheck
344 </message>
345
346 <!--Accessible name strings-->
324 <message name="IDS_APP_ACCNAME_CLOSE" desc="The accessible name for the Cl ose button."> 347 <message name="IDS_APP_ACCNAME_CLOSE" desc="The accessible name for the Cl ose button.">
325 Close 348 Close
326 </message> 349 </message>
327 <message name="IDS_APP_ACCNAME_MINIMIZE" desc="The accessible name for the Minimize button."> 350 <message name="IDS_APP_ACCNAME_MINIMIZE" desc="The accessible name for the Minimize button.">
328 Minimize 351 Minimize
329 </message> 352 </message>
330 <message name="IDS_APP_ACCNAME_MAXIMIZE" desc="The accessible name for the Maximize button."> 353 <message name="IDS_APP_ACCNAME_MAXIMIZE" desc="The accessible name for the Maximize button.">
331 Maximize 354 Maximize
332 </message> 355 </message>
333 <message name="IDS_APP_ACCNAME_RESTORE" desc="The accessible name for the Restore button."> 356 <message name="IDS_APP_ACCNAME_RESTORE" desc="The accessible name for the Restore button.">
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 </message> 663 </message>
641 <message name="IDS_DISPLAY_NAME_INTERNAL" desc="The name used for internal displays, which is shown in the display settings."> 664 <message name="IDS_DISPLAY_NAME_INTERNAL" desc="The name used for internal displays, which is shown in the display settings.">
642 Internal Display 665 Internal Display
643 </message> 666 </message>
644 <message name="IDS_DISPLAY_NAME_VIRTUAL" desc="The name used for virtual d isplays, which is shown in the display settings. Virtual displays are not associ ated with a physical monitor."> 667 <message name="IDS_DISPLAY_NAME_VIRTUAL" desc="The name used for virtual d isplays, which is shown in the display settings. Virtual displays are not associ ated with a physical monitor.">
645 Virtual Display 668 Virtual Display
646 </message> 669 </message>
647 </messages> 670 </messages>
648 </release> 671 </release>
649 </grit> 672 </grit>
OLDNEW
« no previous file with comments | « ui/accessibility/platform/ax_platform_node_win.cc ('k') | ui/views/controls/button/button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698