blob: 79e4a56dbe1bd8e034a711f1ad162da07f9e42e0 [file] [log] [blame]
Hans Muller541afae2017-08-31 07:45:30 -07001{
Yegorb9e1be92017-09-22 13:15:01 -07002 "scriptCategory": "English-like",
3 "@scriptCategory": {
Hans Muller8bfb4b32018-10-09 17:00:15 -07004 "description": "The name of the language's script category (see https://material.io/design/typography/language-support.html#language-categories-reference).",
5 "x-flutter-type": "scriptCategory"
Yegorb9e1be92017-09-22 13:15:01 -07006 },
7
Yegorcbdefea2017-09-14 13:17:38 -07008 "timeOfDayFormat": "h:mm a",
9 "@timeOfDayFormat": {
Ian Hickson75960f32018-08-03 16:41:21 -070010 "description": "The ICU 'Short Time' pattern, such as 'HH:mm', 'h:mm a', 'H:mm'. See: http://demo.icu-project.org/icu-bin/locexp?d_=en&_=en_US",
11 "x-flutter-type": "icuShortTimePattern"
Yegorcbdefea2017-09-14 13:17:38 -070012 },
13
Hans Muller541afae2017-08-31 07:45:30 -070014 "openAppDrawerTooltip": "Open navigation menu",
15 "@openAppDrawerTooltip": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080016 "description": "The tooltip for the leading app bar menu (aka 'hamburger') button."
Hans Muller541afae2017-08-31 07:45:30 -070017 },
18
19 "backButtonTooltip": "Back",
20 "@backButtonTooltip": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080021 "description": "The tooltip for the back button, which closes the current page and returns to the previous one."
Hans Muller541afae2017-08-31 07:45:30 -070022 },
23
24 "closeButtonTooltip": "Close",
25 "@closeButtonTooltip": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080026 "description": "The tooltip for the close button, which closes the current page and returns to the previous one."
27 },
28
29 "deleteButtonTooltip": "Delete",
30 "@deleteButtonTooltip": {
31 "description": "The tooltip for the delete button of chips."
Hans Muller541afae2017-08-31 07:45:30 -070032 },
33
34 "nextMonthTooltip": "Next month",
35 "@nextMonthTooltip": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080036 "description": "The tooltip for the month picker's 'next month' button."
Hans Muller541afae2017-08-31 07:45:30 -070037 },
38
39 "previousMonthTooltip": "Previous month",
40 "@previousMonthTooltip": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080041 "description": "The tooltip for the month picker's 'previous month' button."
Hans Muller60c4ff92017-09-07 16:58:12 -070042 },
43
Hans Muller96a70e82017-09-12 13:15:33 -070044 "nextPageTooltip": "Next page",
Hans Muller7987dfe2017-11-01 10:19:43 -070045 "@nextPageTooltip": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080046 "description": "The tooltip for the button that sends the user to the next page of a paginated data table."
Hans Muller96a70e82017-09-12 13:15:33 -070047 },
48
49 "previousPageTooltip": "Previous page",
Hans Muller7987dfe2017-11-01 10:19:43 -070050 "@previousPageTooltip": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080051 "description": "The tooltip for the button that sends the user to the previous page of a paginated data table."
Hans Muller96a70e82017-09-12 13:15:33 -070052 },
53
54 "showMenuTooltip": "Show menu",
55 "@showMenuTooltip": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080056 "description": "The tooltip for the button that shows a popup menu."
Hans Muller96a70e82017-09-12 13:15:33 -070057 },
58
Hans Muller08869492017-09-15 10:15:44 -070059 "aboutListTileTitle": "About $applicationName",
60 "@aboutListTileTitle": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080061 "description": "The default title for the drawer item that shows an about page for the application. The value of $applicationName is the name of the application, like GMail or Chrome.",
Hans Muller7987dfe2017-11-01 10:19:43 -070062 "parameters": "applicationName"
Hans Muller08869492017-09-15 10:15:44 -070063 },
64
Hans Muller60c4ff92017-09-07 16:58:12 -070065 "licensesPageTitle": "Licenses",
66 "@licensesPageTitle": {
Hans Muller7987dfe2017-11-01 10:19:43 -070067 "description": "The title for the Flutter licenses page."
Hans Muller60c4ff92017-09-07 16:58:12 -070068 },
69
Hans Muller96a70e82017-09-12 13:15:33 -070070 "pageRowsInfoTitle": "$firstRow–$lastRow of $rowCount",
Yegorf4f20c22017-09-22 12:26:47 -070071 "@pageRowsInfoTitle": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080072 "description": "The text shown in the footer of a paginated data table when the exact overall row count is known. This message describes an integer range where $firstRow is the index of the start of the range, $lastRow is the index of the end of the range, and $rowCount is the limit of the range. All values are greater than or equal to zero.",
Hans Muller7987dfe2017-11-01 10:19:43 -070073 "parameters": "firstRow, lastRow, rowCount"
74 },
75
76 "pageRowsInfoTitleApproximate": "$firstRow–$lastRow of about $rowCount",
77 "@pageRowsInfoTitleApproximate": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080078 "description": "The text shown in the footer of a paginated data table when the exact overall row count is unknown. This message describes an integer range where $firstRow is the index of the start of the range, $lastRow is the index of the end of the range, and $rowCount is the limit of the range. All values are greater than or equal to zero.",
Hans Muller7987dfe2017-11-01 10:19:43 -070079 "parameters": "firstRow, lastRow, rowCount"
Hans Muller96a70e82017-09-12 13:15:33 -070080 },
81
82 "rowsPerPageTitle": "Rows per page:",
83 "@rowsPerPageTitle": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080084 "description": "The caption for the drop-down button on a paginated data table's footer that allows the user to control the number of rows of data per page of the table."
Hans Muller96a70e82017-09-12 13:15:33 -070085 },
86
Yegor291602d2017-12-20 17:10:32 -080087 "tabLabel": "Tab $tabIndex of $tabCount",
88 "@tabLabel": {
89 "description": "The accessibility label used on a tab. This message describes the index of the selected tab and how many tabs there are, e.g. 'Tab 1 of 2'. All values are greater than or equal to one.",
90 "parameters": "tabIndex, tabCount"
91 },
92
Hans Muller96a70e82017-09-12 13:15:33 -070093 "selectedRowCountTitleZero": "No items selected",
94 "selectedRowCountTitleOne": "1 item selected",
95 "selectedRowCountTitleOther": "$selectedRowCount items selected",
96 "@selectedRowCountTitle": {
Ian Hicksond6f496c2017-12-04 12:59:48 -080097 "description": "The title for the header of a paginated data table when the user is selecting rows. The value of $selectedRowCount is an integer which indicates the number of data table row elements that have been selected.",
Hans Muller7987dfe2017-11-01 10:19:43 -070098 "plural": "selectedRowCount"
Hans Muller96a70e82017-09-12 13:15:33 -070099 },
100
Hans Muller60c4ff92017-09-07 16:58:12 -0700101 "cancelButtonLabel": "CANCEL",
102 "@cancelButtonLabel": {
Hans Muller7987dfe2017-11-01 10:19:43 -0700103 "description": "The label for cancel buttons and menu items."
Hans Muller60c4ff92017-09-07 16:58:12 -0700104 },
105
106 "closeButtonLabel": "CLOSE",
107 "@closeButtonLabel": {
Hans Muller7987dfe2017-11-01 10:19:43 -0700108 "description": "The label for close buttons and menu items."
Hans Muller60c4ff92017-09-07 16:58:12 -0700109 },
110
111 "continueButtonLabel": "CONTINUE",
112 "@continueButtonLabel": {
Hans Muller7987dfe2017-11-01 10:19:43 -0700113 "description": "The label for continue buttons and menu items."
Hans Muller60c4ff92017-09-07 16:58:12 -0700114 },
115
116 "copyButtonLabel": "COPY",
117 "@copyButtonLabel": {
Hans Muller7987dfe2017-11-01 10:19:43 -0700118 "description": "The label for copy buttons and menu items."
Hans Muller60c4ff92017-09-07 16:58:12 -0700119 },
120
121 "cutButtonLabel": "CUT",
122 "@cutButtonLabel": {
Hans Muller7987dfe2017-11-01 10:19:43 -0700123 "description": "The label for cut buttons and menu items."
Hans Muller60c4ff92017-09-07 16:58:12 -0700124 },
125
126 "okButtonLabel": "OK",
127 "@okButtonLabel": {
Hans Muller7987dfe2017-11-01 10:19:43 -0700128 "description": "The label for OK buttons and menu items."
Hans Muller60c4ff92017-09-07 16:58:12 -0700129 },
130
131 "pasteButtonLabel": "PASTE",
132 "@pasteButtonLabel": {
Hans Muller7987dfe2017-11-01 10:19:43 -0700133 "description": "The label for paste buttons and menu items."
Hans Muller60c4ff92017-09-07 16:58:12 -0700134 },
135
136 "selectAllButtonLabel": "SELECT ALL",
Hans Muller7987dfe2017-11-01 10:19:43 -0700137 "@selectAllButtonLabel": {
138 "description": "The label for select-all buttons and menu items."
Hans Muller60c4ff92017-09-07 16:58:12 -0700139 },
140
141 "viewLicensesButtonLabel": "VIEW LICENSES",
142 "@viewLicensesButtonLabel": {
Ian Hicksond6f496c2017-12-04 12:59:48 -0800143 "description": "The label for the button in the about box that leads the user to a list of all licenses that apply to the application."
Yegorcbdefea2017-09-14 13:17:38 -0700144 },
145
146 "anteMeridiemAbbreviation": "AM",
147 "@anteMeridiemAbbreviation": {
Hans Mullerb6fb4a82017-11-14 11:00:05 -0800148 "description": "The abbreviation for ante meridiem (before noon) shown in the time picker. Translations for this abbreviation will only be provided for locales that support it."
Yegorcbdefea2017-09-14 13:17:38 -0700149 },
150
151 "postMeridiemAbbreviation": "PM",
152 "@postMeridiemAbbreviation": {
Hans Mullerb6fb4a82017-11-14 11:00:05 -0800153 "description": "The abbreviation for post meridiem (after noon) shown in the time picker. Translations for this abbreviation will only be provided for locales that support it."
Yegorb80751c2017-12-08 14:29:28 -0800154 },
155
156 "timePickerHourModeAnnouncement": "Select hours",
157 "@timePickerHourModeAnnouncement": {
158 "description": "The audio announcement made when the time picker dialog is set to hour mode."
159 },
160
161 "timePickerMinuteModeAnnouncement": "Select minutes",
162 "@timePickerMinuteModeAnnouncement": {
163 "description": "The audio announcement made when the time picker dialog is set to minute mode."
Michael Goderbauerf9cf5a12017-12-14 15:03:51 -0800164 },
165
166 "modalBarrierDismissLabel": "Dismiss",
167 "@modalBarrierDismissLabel": {
168 "description": "Label read out by accessibility tools (TalkBack or VocieOver) for a modal barrier to indicate that a tap dismisses the barrier. A modal barrier can for example be found behind a alert or popup to block user interaction with elements behind it."
Yegor68736082017-12-20 17:10:06 -0800169 },
170
171 "signedInLabel": "Signed in",
172 "@signedInLabel": {
Hans Muller0038a2b2018-03-08 15:42:29 -0800173 "description": "The accessibility label used to indicate which account is signed in, in a UserAccountsDrawerHeader, when the accessibility user navigates the UI. This phrase serves as an adjective with respect to the user. The phrase indicates that the user is currently signed in."
Yegor68736082017-12-20 17:10:06 -0800174 },
175
176 "hideAccountsLabel": "Hide accounts",
177 "@hideAccountsLabel": {
Hans Muller0038a2b2018-03-08 15:42:29 -0800178 "description": "The accessibility label used for the button on a UserAccountsDrawerHeader that hides the list of accounts."
Yegor68736082017-12-20 17:10:06 -0800179 },
180
181 "showAccountsLabel": "Show accounts",
182 "@showAccountsLabel": {
Hans Muller0038a2b2018-03-08 15:42:29 -0800183 "description": "The accessibility label used for the button on a UserAccountsDrawerHeader that shows the list of accounts."
Jonah Williamsb1ecf1e2018-04-16 14:09:20 -0700184 },
185
186 "drawerLabel": "Navigation menu",
187 "@drawerLabel": {
188 "description": "The audio announcement made when the Drawer is opened."
189 },
190
191 "popupMenuLabel": "Popup menu",
192 "@popupMenuLabel": {
193 "description": "The audio announcement made when a PopupMenu is opened."
194 },
195
196 "dialogLabel": "Dialog",
197 "@dialogLabel": {
198 "description": "The audio announcement made when a Dialog is opened."
199 },
200
201 "alertDialogLabel": "Alert",
Hans Mullerfbf90442018-07-12 08:21:59 -0700202 "@alertDialogLabel": {
Jonah Williamsb1ecf1e2018-04-16 14:09:20 -0700203 "description": "The audio announcement made when an AlertDialog is opened."
Michael Goderbauerd5a10342018-05-24 09:30:37 -0700204 },
205
206 "searchFieldLabel": "Search",
Hans Mullerfbf90442018-07-12 08:21:59 -0700207 "@searchFieldLabel": {
208 "description": "Label indicating that a text field is a search field. This will be used as a hint text in the text field."
David Shuckerow99d5ef92018-08-07 12:48:23 -0700209 },
210
211 "reorderItemToStart": "Move to the start",
212 "@reorderItemToStart": {
213 "description": "The audio announcement to move an item in a Reorderable List to the start of the list."
214 },
215
216 "reorderItemToEnd": "Move to the end",
217 "@reorderItemToEnd": {
218 "description": "The audio announcement to move an item in a Reorderable List to the end of the list."
219 },
220
221 "reorderItemUp": "Move up",
222 "@reorderItemUp": {
223 "description": "The audio announcement to move an item in a Reorderable List up in the list when it is oriented vertically."
224 },
225
226 "reorderItemDown": "Move down",
227 "@reorderItemDown": {
228 "description": "The audio announcement to move an item in a Reorderable List down in the list when it is oriented vertically."
229 },
230
231 "reorderItemLeft": "Move left",
232 "@reorderItemLeft": {
233 "description": "The audio announcement to move an item in a Reorderable List left in the list when it is oriented horizontally."
234 },
235
236 "reorderItemRight": "Move right",
237 "@reorderItemRight": {
238 "description": "The audio announcement to move an item in a Reorderable List right in the list when it is oriented horizontally."
Jonah Williams09fe3472018-08-22 10:20:51 -0700239 },
240
241 "expandedIconTapHint": "Collapse",
242 "@expandedIconTapHint": {
243 "description": "The verb which describes what happens when an expanded ExpandIcon toggle button is pressed. This is used by TalkBack on Android to replace the default hint on the accessibility action. The verb will be concatenated with a prefix string which describes how to perform the action, which by default is 'double tap to activate'. In the case of US english, this would be 'double tap to collapse.' The exact phrasing of the hint will vary based on locale"
244 },
245
246 "collapsedIconTapHint": "Expand",
247 "@collapsedIconTapHint": {
248 "description": "The verb which describes what happens when a collapsed ExpandIcon toggle button is pressed. This is used by TalkBack on Android to replace the default hint on the accessibility action. The verb will be concatenated with a prefix string which describes how to perform the action, which by default is 'double tap to activate'. In the case of US english, this would be 'double tap to expand.' The exact phrasing of the hint will vary based on locale"
Jonah Williams3b309bd2018-08-28 12:39:24 -0700249 },
250
251 "remainingTextFieldCharacterCountZero": "No characters remaining",
252 "remainingTextFieldCharacterCountOne": "1 character remaining",
253 "remainingTextFieldCharacterCountOther": "$remainingCount characters remaining",
254 "@remainingTextFieldCharacterCount": {
255 "description": "The label for the TextField's character counter. remainingCharacters is a integer representing how many more characters the user can type into the text field before using up a given budget. All values are greater than or equal to zero.",
256 "plural": "remainingCount"
Hans Mullerfbf90442018-07-12 08:21:59 -0700257 }
Hans Muller541afae2017-08-31 07:45:30 -0700258}