material_en.arb 11.3 KB
Newer Older
1
{
2 3
  "scriptCategory": "English-like",
  "@scriptCategory": {
4 5
    "description": "The name of the language's script category (see https://material.io/design/typography/language-support.html#language-categories-reference).",
    "x-flutter-type": "scriptCategory"
6 7
  },

Yegor's avatar
Yegor committed
8 9
  "timeOfDayFormat": "h:mm a",
  "@timeOfDayFormat": {
10 11
    "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",
    "x-flutter-type": "icuShortTimePattern"
Yegor's avatar
Yegor committed
12 13
  },

14 15
  "openAppDrawerTooltip": "Open navigation menu",
  "@openAppDrawerTooltip": {
16
    "description": "The tooltip for the leading app bar menu (aka 'hamburger') button."
17 18 19 20
  },

  "backButtonTooltip": "Back",
  "@backButtonTooltip": {
21
    "description": "The tooltip for the back button, which closes the current page and returns to the previous one."
22 23 24 25
  },

  "closeButtonTooltip": "Close",
  "@closeButtonTooltip": {
26 27 28 29 30 31
    "description": "The tooltip for the close button, which closes the current page and returns to the previous one."
  },

  "deleteButtonTooltip": "Delete",
  "@deleteButtonTooltip": {
    "description": "The tooltip for the delete button of chips."
32 33 34 35
  },

  "nextMonthTooltip": "Next month",
  "@nextMonthTooltip": {
36
    "description": "The tooltip for the month picker's 'next month' button."
37 38 39 40
  },

  "previousMonthTooltip": "Previous month",
  "@previousMonthTooltip": {
41
    "description": "The tooltip for the month picker's 'previous month' button."
42 43
  },

44
  "nextPageTooltip": "Next page",
45
  "@nextPageTooltip": {
46
    "description": "The tooltip for the button that sends the user to the next page of a paginated data table."
47 48 49
  },

  "previousPageTooltip": "Previous page",
50
  "@previousPageTooltip": {
51
    "description": "The tooltip for the button that sends the user to the previous page of a paginated data table."
52 53 54 55
  },

  "showMenuTooltip": "Show menu",
  "@showMenuTooltip": {
56
    "description": "The tooltip for the button that shows a popup menu."
57 58
  },

Hans Muller's avatar
Hans Muller committed
59 60
  "aboutListTileTitle": "About $applicationName",
  "@aboutListTileTitle": {
61
    "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.",
62
    "parameters": "applicationName"
Hans Muller's avatar
Hans Muller committed
63 64
  },

65 66
  "licensesPageTitle": "Licenses",
  "@licensesPageTitle": {
67
    "description": "The title for the Flutter licenses page."
68 69
  },

70
  "pageRowsInfoTitle": "$firstRow–$lastRow of $rowCount",
71
  "@pageRowsInfoTitle": {
72
    "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.",
73 74 75 76 77
    "parameters": "firstRow, lastRow, rowCount"
  },

  "pageRowsInfoTitleApproximate": "$firstRow–$lastRow of about $rowCount",
  "@pageRowsInfoTitleApproximate": {
78
    "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.",
79
    "parameters": "firstRow, lastRow, rowCount"
80 81 82 83
  },

  "rowsPerPageTitle": "Rows per page:",
  "@rowsPerPageTitle": {
84
    "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."
85 86
  },

87 88 89 90 91 92
  "tabLabel": "Tab $tabIndex of $tabCount",
  "@tabLabel": {
    "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.",
    "parameters": "tabIndex, tabCount"
  },

93 94 95 96
  "selectedRowCountTitleZero": "No items selected",
  "selectedRowCountTitleOne": "1 item selected",
  "selectedRowCountTitleOther": "$selectedRowCount items selected",
  "@selectedRowCountTitle": {
97
    "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.",
98
    "plural": "selectedRowCount"
99 100
  },

101 102
  "cancelButtonLabel": "CANCEL",
  "@cancelButtonLabel": {
103
    "description": "The label for cancel buttons and menu items."
104 105 106 107
  },

  "closeButtonLabel": "CLOSE",
  "@closeButtonLabel": {
108
    "description": "The label for close buttons and menu items."
109 110 111 112
  },

  "continueButtonLabel": "CONTINUE",
  "@continueButtonLabel": {
113
    "description": "The label for continue buttons and menu items."
114 115 116 117
  },

  "copyButtonLabel": "COPY",
  "@copyButtonLabel": {
118
    "description": "The label for copy buttons and menu items."
119 120 121 122
  },

  "cutButtonLabel": "CUT",
  "@cutButtonLabel": {
123
    "description": "The label for cut buttons and menu items."
124 125 126 127
  },

  "okButtonLabel": "OK",
  "@okButtonLabel": {
128
    "description": "The label for OK buttons and menu items."
129 130 131 132
  },

  "pasteButtonLabel": "PASTE",
  "@pasteButtonLabel": {
133
    "description": "The label for paste buttons and menu items."
134 135 136
  },

  "selectAllButtonLabel": "SELECT ALL",
137 138
  "@selectAllButtonLabel": {
    "description": "The label for select-all buttons and menu items."
139 140 141 142
  },

  "viewLicensesButtonLabel": "VIEW LICENSES",
  "@viewLicensesButtonLabel": {
143
    "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."
Yegor's avatar
Yegor committed
144 145 146 147
  },

  "anteMeridiemAbbreviation": "AM",
  "@anteMeridiemAbbreviation": {
148
    "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."
Yegor's avatar
Yegor committed
149 150 151 152
  },

  "postMeridiemAbbreviation": "PM",
  "@postMeridiemAbbreviation": {
153
    "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."
154 155 156 157 158 159 160 161 162 163
  },

  "timePickerHourModeAnnouncement": "Select hours",
  "@timePickerHourModeAnnouncement": {
    "description": "The audio announcement made when the time picker dialog is set to hour mode."
  },

  "timePickerMinuteModeAnnouncement": "Select minutes",
  "@timePickerMinuteModeAnnouncement": {
    "description": "The audio announcement made when the time picker dialog is set to minute mode."
164 165 166 167 168
  },

  "modalBarrierDismissLabel": "Dismiss",
  "@modalBarrierDismissLabel": {
    "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."
169 170 171 172
  },

  "signedInLabel": "Signed in",
  "@signedInLabel": {
173
    "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."
174 175 176 177
  },

  "hideAccountsLabel": "Hide accounts",
  "@hideAccountsLabel": {
178
    "description": "The accessibility label used for the button on a UserAccountsDrawerHeader that hides the list of accounts."
179 180 181 182
  },

  "showAccountsLabel": "Show accounts",
  "@showAccountsLabel": {
183
    "description": "The accessibility label used for the button on a UserAccountsDrawerHeader that shows the list of accounts."
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
  },

  "drawerLabel": "Navigation menu",
  "@drawerLabel": {
    "description": "The audio announcement made when the Drawer is opened."
  },

  "popupMenuLabel": "Popup menu",
  "@popupMenuLabel": {
    "description": "The audio announcement made when a PopupMenu is opened."
  },

  "dialogLabel": "Dialog",
  "@dialogLabel": {
    "description": "The audio announcement made when a Dialog is opened."
  },

  "alertDialogLabel": "Alert",
202
  "@alertDialogLabel": {
203
    "description": "The audio announcement made when an AlertDialog is opened."
204 205 206
  },

  "searchFieldLabel": "Search",
207 208
  "@searchFieldLabel": {
    "description": "Label indicating that a text field is a search field. This will be used as a hint text in the text field."
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
  },

  "reorderItemToStart": "Move to the start",
  "@reorderItemToStart": {
    "description": "The audio announcement to move an item in a Reorderable List to the start of the list."
  },

  "reorderItemToEnd": "Move to the end",
  "@reorderItemToEnd": {
    "description": "The audio announcement to move an item in a Reorderable List to the end of the list."
  },

  "reorderItemUp": "Move up",
  "@reorderItemUp": {
    "description": "The audio announcement to move an item in a Reorderable List up in the list when it is oriented vertically."
  },

  "reorderItemDown": "Move down",
  "@reorderItemDown": {
    "description": "The audio announcement to move an item in a Reorderable List down in the list when it is oriented vertically."
  },

  "reorderItemLeft": "Move left",
  "@reorderItemLeft": {
    "description": "The audio announcement to move an item in a Reorderable List left in the list when it is oriented horizontally."
  },

  "reorderItemRight": "Move right",
  "@reorderItemRight": {
    "description": "The audio announcement to move an item in a Reorderable List right in the list when it is oriented horizontally."
239 240 241 242 243 244 245 246 247 248
  },

  "expandedIconTapHint": "Collapse",
  "@expandedIconTapHint": {
    "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"
  },

  "collapsedIconTapHint": "Expand",
  "@collapsedIconTapHint": {
    "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"
249 250 251 252 253 254 255 256
  },

  "remainingTextFieldCharacterCountZero": "No characters remaining",
  "remainingTextFieldCharacterCountOne": "1 character remaining",
  "remainingTextFieldCharacterCountOther": "$remainingCount characters remaining",
  "@remainingTextFieldCharacterCount": {
    "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.",
    "plural": "remainingCount"
257 258 259 260 261
  },

  "refreshIndicatorSemanticLabel": "Refresh",
  "@refreshIndicatorSemanticLabel": {
    "description": "The verb which describes what happens when a RefreshIndicator is displayed on screen.  This is used by TalkBack on Android to announce that a refresh is happening."
262
  }
263
}