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

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

Issue 2007503002: Views: Replace resource ids with ui::TextEditCommand enum for text editing commands in Textfield. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added file deleted during rename. Created 4 years, 6 months 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
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 source_lang_id="en" enc_check="möl"> 8 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 <message name="IDS_APP_PASTE" desc="The text label of the Paste menu item" > 382 <message name="IDS_APP_PASTE" desc="The text label of the Paste menu item" >
383 &amp;Paste 383 &amp;Paste
384 </message> 384 </message>
385 <message name="IDS_APP_DELETE" desc="The text label of the Delete menu ite m"> 385 <message name="IDS_APP_DELETE" desc="The text label of the Delete menu ite m">
386 &amp;Delete 386 &amp;Delete
387 </message> 387 </message>
388 <message name="IDS_APP_SELECT_ALL" desc="The text label of the Select All menu item"> 388 <message name="IDS_APP_SELECT_ALL" desc="The text label of the Select All menu item">
389 Select &amp;all 389 Select &amp;all
390 </message> 390 </message>
391 391
392 <!-- Textfield editing commands; their actual string contents are unused. -->
393 <!-- These match third_party/WebKit/Source/core/editing/EditorCommand.cpp. -->
394 <message name="IDS_DELETE_BACKWARD" desc="A command to delete backward.">
395 Delete Backward
396 </message>
397 <message name="IDS_DELETE_FORWARD" desc="A command to delete forward.">
398 Delete Forward
399 </message>
400 <message name="IDS_DELETE_TO_BEGINNING_OF_LINE" desc="A command to delete to the beginning of the line.">
401 Delete To Beginning Of Line
402 </message>
403 <message name="IDS_DELETE_TO_END_OF_LINE" desc="A command to delete to the end of the line.">
404 Delete To End Of Line
405 </message>
406 <message name="IDS_DELETE_WORD_BACKWARD" desc="A command to delete backwar d by a word.">
407 Delete Word Backward
408 </message>
409 <message name="IDS_DELETE_WORD_FORWARD" desc="A command to delete forward by a word.">
410 Delete Word Forward
411 </message>
412 <message name="IDS_MOVE_DOWN" desc="A command to move the cursor down.">
413 Move Down
414 </message>
415 <message name="IDS_MOVE_LEFT" desc="A command to move the cursor left.">
416 Move Left
417 </message>
418 <message name="IDS_MOVE_LEFT_AND_MODIFY_SELECTION" desc="A command to move the cursor left and modify the selection.">
419 Move Left And Modify Selection
420 </message>
421 <message name="IDS_MOVE_RIGHT" desc="A command to move the cursor right.">
422 Move Right
423 </message>
424 <message name="IDS_MOVE_RIGHT_AND_MODIFY_SELECTION" desc="A command to mov e the cursor right and modify the selection.">
425 Move Right And Modify Selection
426 </message>
427 <message name="IDS_MOVE_WORD_LEFT" desc="A command to move the cursor left to the next word break.">
428 Move Word Left
429 </message>
430 <message name="IDS_MOVE_WORD_LEFT_AND_MODIFY_SELECTION" desc="A command to move the cursor left to the next word break and modify the selection.">
431 Move Word Left And Modify Selection
432 </message>
433 <message name="IDS_MOVE_WORD_RIGHT" desc="A command to move the cursor rig ht to the next word break.">
434 Move Word Right
435 </message>
436 <message name="IDS_MOVE_WORD_RIGHT_AND_MODIFY_SELECTION" desc="A command t o move the cursor right to the next word break and modify the selection.">
437 Move Word Right And Modify Selection
438 </message>
439 <message name="IDS_MOVE_TO_BEGINNING_OF_LINE" desc="A command to move the cursor to the beginning of the line.">
440 Move To Beginning Of Line
441 </message>
442 <message name="IDS_MOVE_TO_BEGINNING_OF_LINE_AND_MODIFY_SELECTION" desc="A command to move the cursor to the beginning of the line and modify the selectio n.">
443 Move To Beginning Of Line And Modify Selection
444 </message>
445 <message name="IDS_MOVE_TO_END_OF_LINE" desc="A command to move the cursor to the end of the line.">
446 Move To End Of Line
447 </message>
448 <message name="IDS_MOVE_TO_END_OF_LINE_AND_MODIFY_SELECTION" desc="A comma nd to move the cursor to the end of the line and modify the selection.">
449 Move To End Of Line And Modify Selection
450 </message>
451 <message name="IDS_MOVE_UP" desc="A command to move the cursor up.">
452 Move Up
453 </message>
454 <message name="IDS_APP_REDO" desc="A command to redo an action.">
455 Redo
456 </message>
457
458 <!-- Generic terms --> 392 <!-- Generic terms -->
459 <message name="IDS_APP_OK" desc="Used for Ok on buttons"> 393 <message name="IDS_APP_OK" desc="Used for Ok on buttons">
460 OK 394 OK
461 </message> 395 </message>
462 <message name="IDS_APP_CANCEL" desc="Used for Cancel on buttons"> 396 <message name="IDS_APP_CANCEL" desc="Used for Cancel on buttons">
463 Cancel 397 Cancel
464 </message> 398 </message>
465 <message name="IDS_APP_CLOSE" desc="A generic term for Close on buttons an d menus."> 399 <message name="IDS_APP_CLOSE" desc="A generic term for Close on buttons an d menus.">
466 Close 400 Close
467 </message> 401 </message>
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 </message> 626 </message>
693 <message name="IDS_APP_LIST_SPEECH_HINT_TEXT" desc="The text label in the speech recognition UI to ask the user to speak the search query"> 627 <message name="IDS_APP_LIST_SPEECH_HINT_TEXT" desc="The text label in the speech recognition UI to ask the user to speak the search query">
694 Speak now 628 Speak now
695 </message> 629 </message>
696 <message name="IDS_APP_LIST_SPEECH_NETWORK_ERROR_HINT_TEXT" desc="The text label in the speech recognition UI to show the speech recognition can't start b ecause of network error."> 630 <message name="IDS_APP_LIST_SPEECH_NETWORK_ERROR_HINT_TEXT" desc="The text label in the speech recognition UI to show the speech recognition can't start b ecause of network error.">
697 No internet connection 631 No internet connection
698 </message> 632 </message>
699 </messages> 633 </messages>
700 </release> 634 </release>
701 </grit> 635 </grit>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698