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

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

Issue 211593006: Make Views Textfield key handling execute commands. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Only return true for enabled commands. Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | ui/views/controls/textfield/textfield.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 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 1860 matching lines...) Expand 10 before | Expand all | Expand 10 after
1871 <message name="IDS_APP_SCROLLBAR_CXMENU_SCROLLRIGHT" desc="The label for t he 'Scroll Left' item"> 1871 <message name="IDS_APP_SCROLLBAR_CXMENU_SCROLLRIGHT" desc="The label for t he 'Scroll Left' item">
1872 Scroll Right 1872 Scroll Right
1873 </message> 1873 </message>
1874 <message name="IDS_APP_SCROLLBAR_CXMENU_SCROLLUP" desc="The label for the 'Scroll Up' item"> 1874 <message name="IDS_APP_SCROLLBAR_CXMENU_SCROLLUP" desc="The label for the 'Scroll Up' item">
1875 Scroll Up 1875 Scroll Up
1876 </message> 1876 </message>
1877 <message name="IDS_APP_SCROLLBAR_CXMENU_SCROLLDOWN" desc="The label for th e 'Scroll Down' item"> 1877 <message name="IDS_APP_SCROLLBAR_CXMENU_SCROLLDOWN" desc="The label for th e 'Scroll Down' item">
1878 Scroll Down 1878 Scroll Down
1879 </message> 1879 </message>
1880 1880
1881 <!-- Edit field context menu item labels. --> 1881 <!-- Textfield context menu item labels. -->
1882 <message name="IDS_APP_UNDO" desc="The text label of the Undo menu item"> 1882 <message name="IDS_APP_UNDO" desc="The text label of the Undo menu item">
1883 &amp;Undo 1883 &amp;Undo
1884 </message> 1884 </message>
1885 <message name="IDS_APP_CUT" desc="The text label of the Cut menu item"> 1885 <message name="IDS_APP_CUT" desc="The text label of the Cut menu item">
1886 Cu&amp;t 1886 Cu&amp;t
1887 </message> 1887 </message>
1888 <message name="IDS_APP_COPY" desc="The text label of the Copy menu item"> 1888 <message name="IDS_APP_COPY" desc="The text label of the Copy menu item">
1889 &amp;Copy 1889 &amp;Copy
1890 </message> 1890 </message>
1891 <message name="IDS_APP_PASTE" desc="The text label of the Paste menu item" > 1891 <message name="IDS_APP_PASTE" desc="The text label of the Paste menu item" >
1892 &amp;Paste 1892 &amp;Paste
1893 </message> 1893 </message>
1894 <message name="IDS_APP_DELETE" desc="The text label of the Delete menu ite m"> 1894 <message name="IDS_APP_DELETE" desc="The text label of the Delete menu ite m">
1895 &amp;Delete 1895 &amp;Delete
1896 </message> 1896 </message>
1897 <message name="IDS_APP_SELECT_ALL" desc="The text label of the Select All menu item"> 1897 <message name="IDS_APP_SELECT_ALL" desc="The text label of the Select All menu item">
1898 Select &amp;all 1898 Select &amp;all
1899 </message> 1899 </message>
1900 1900
1901 <!-- Textfield editing commands; their actual string contents are unused. -->
1902 <!-- These match third_party/WebKit/Source/core/editing/EditorCommand.cpp. -->
1903 <message name="IDS_DELETE_BACKWARD" desc="A command to delete backward.">
1904 Delete Backward
1905 </message>
1906 <message name="IDS_DELETE_FORWARD" desc="A command to delete forward.">
1907 Delete Forward
1908 </message>
1909 <message name="IDS_DELETE_TO_BEGINNING_OF_LINE" desc="A command to delete to the beginning of the line.">
1910 Delete To Beginning Of Line
1911 </message>
1912 <message name="IDS_DELETE_TO_END_OF_LINE" desc="A command to delete to the end of the line.">
1913 Delete To End Of Line
1914 </message>
1915 <message name="IDS_DELETE_WORD_BACKWARD" desc="A command to delete backwar d by a word.">
1916 Delete Word Backward
1917 </message>
1918 <message name="IDS_DELETE_WORD_FORWARD" desc="A command to delete forward by a word.">
1919 Delete Word Forward
1920 </message>
1921 <message name="IDS_MOVE_LEFT" desc="A command to move the cursor left.">
1922 Move Left
1923 </message>
1924 <message name="IDS_MOVE_LEFT_AND_MODIFY_SELECTION" desc="A command to move the cursor left and modify the selection.">
1925 Move Left And Modify Selection
1926 </message>
1927 <message name="IDS_MOVE_RIGHT" desc="A command to move the cursor right.">
1928 Move Right
1929 </message>
1930 <message name="IDS_MOVE_RIGHT_AND_MODIFY_SELECTION" desc="A command to mov e the cursor right and modify the selection.">
1931 Move Right And Modify Selection
1932 </message>
1933 <message name="IDS_MOVE_WORD_LEFT" desc="A command to move the cursor left to the next word break.">
1934 Move Word Left
1935 </message>
1936 <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.">
1937 Move Word Left And Modify Selection
1938 </message>
1939 <message name="IDS_MOVE_WORD_RIGHT" desc="A command to move the cursor rig ht to the next word break.">
1940 Move Word Right
1941 </message>
1942 <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.">
1943 Move Word Right And Modify Selection
1944 </message>
1945 <message name="IDS_MOVE_TO_BEGINNING_OF_LINE" desc="A command to move the cursor to the beginning of the line.">
1946 Move To Beginning Of Line
1947 </message>
1948 <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.">
1949 Move To Beginning Of Line And Modify Selection
1950 </message>
1951 <message name="IDS_MOVE_TO_END_OF_LINE" desc="A command to move the cursor to the end of the line.">
1952 Move To End Of Line
1953 </message>
1954 <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.">
1955 Move To End Of Line And Modify Selection
1956 </message>
1957 <message name="IDS_APP_REDO" desc="A command to redo an action.">
1958 Redo
1959 </message>
1960
1901 <!-- Generic terms --> 1961 <!-- Generic terms -->
1902 <message name="IDS_APP_OK" desc="Used for Ok on buttons"> 1962 <message name="IDS_APP_OK" desc="Used for Ok on buttons">
1903 OK 1963 OK
1904 </message> 1964 </message>
1905 <message name="IDS_APP_CANCEL" desc="Used for Cancel on buttons"> 1965 <message name="IDS_APP_CANCEL" desc="Used for Cancel on buttons">
1906 Cancel 1966 Cancel
1907 </message> 1967 </message>
1908 <message name="IDS_APP_CLOSE" desc="A generic term for Close on buttons an d menus."> 1968 <message name="IDS_APP_CLOSE" desc="A generic term for Close on buttons an d menus.">
1909 Close 1969 Close
1910 </message> 1970 </message>
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
2107 </message> 2167 </message>
2108 <message name="IDS_APP_LIST_FOLDER_NAME_PLACEHOLDER" desc="The placeholder text for app list folder name."> 2168 <message name="IDS_APP_LIST_FOLDER_NAME_PLACEHOLDER" desc="The placeholder text for app list folder name.">
2109 Unnamed Folder 2169 Unnamed Folder
2110 </message> 2170 </message>
2111 <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"> 2171 <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">
2112 Speak now 2172 Speak now
2113 </message> 2173 </message>
2114 </messages> 2174 </messages>
2115 </release> 2175 </release>
2116 </grit> 2176 </grit>
OLDNEW
« no previous file with comments | « no previous file | ui/views/controls/textfield/textfield.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698