Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 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 | 23x | import React, { Fragment } from "react"; // prettier-ignore // eslint-disable-next-line export const en_us = { locale: 'en_us', // 操作:确定按钮 okText: ( 'OK' ), // 操作:取消按钮 cancelText: ( 'Cancel' ), // 文案:数据加载中 loadingText: ( 'Loading…' ), // 文案:数据加载失败 loadErrorText: ( 'Loading failed' ), // 操作:重试数据加载 loadRetryText: ( 'Retry' ), // 操作:关闭 closeText: ( 'Close' ), // 文案:帮助 helpText: ( 'Help' ), // 操作:清空 cleanText: ( 'Clear' ), // 操作:搜索 searchText: ( 'Search' ), // 文案:数据为空 emptyText: ( 'No data yet' ), // 操作:全选 selectAllText: ( 'Select all' ), // 文案:分页组件显示总记录数 paginationRecordCount: (count) => ( <Fragment>Total items: <strong>{count}</strong> </Fragment> ), // 操作:跳到上一页 paginationPrevPage: ( 'Previous' ), // 操作:跳到下一页 paginationNextPage: ( 'Next' ), // 操作:跳到第一页 paginationToFirstPage: ( 'First page' ), // 操作:跳到最后一页 paginationToLastPage: ( 'Last page' ), // 文案:提醒用户当前已经在第一页,无法再跳到上一页 paginationAtFirst: ( 'This is the first page' ), // 文案:提醒用户当前已经在最后一页,无法再跳到上一页 paginationAtLast: ( 'This is the last page' ), // 文案:表示分页组件每页显示多少行记录,后接行数选项 paginationRecordPerPage: ( 'Records per page' ), // 文案:表示分页组件总共有多少页,前面是当前的页码 paginationPageCount: (count) => ( count > 1 ? <Fragment> / {count} pages</Fragment> : <Fragment> / {count} page</Fragment> ), // 文案:下拉选择组件默认的提示文案 pleaseSelect: ( 'Please select' ), // 文案:查询到结果 foundText: ( 'Found the following results' ), // 文案:表格中,用于显示找到多少条结果,后面会拼接「返回原列表」 foundManyText: (count) => ( count > 1 ? `${count} results found` : `${count} result found` ), // 文案:同 resultText,不过是在有关键字的情况下显示 foundManyTextWithKeyword: (keyword, count) => ( count > 1 ? `${count} results found for "${keyword}"` : `${count} result found for "${keyword}"` ), // 文案:搜索某个关键字的情况下,没有找到结果 foundNothingWithKeyword: (keyword) => ( `No results found for "${keyword}"` ), // 操作:表格中清空当前筛选结果,返回源列表 clearResultText: ( 'Back to list' ), // 文案:tagSearchBox 使用提示 tagSearchBoxTips: ( 'Separate keywords with "|"; press Enter to separate filter tags' ), // 文案:tagSearchBox 使用提示 tagSearchBoxEditingTips: ( 'Click to modify. Press Enter to finish.' ), // 文案:tagSearchBox 选择框标题 tagSearchBoxSelectTitle: ( 'Select a filter' ), // 文案:tagSearchBox 帮助图片地址 tagSearchBoxHelpImgUrl: ( '//imgcache.qq.com/open_proj/proj_qcloud_v2/mc_2014/server/css/img/search-dialog-en.png' ), // 文案:今天 today: ( 'Today' ), // 文案:本月 curMonth: ( 'This month' ), // 文案:下个月 prevMonth: ( 'Previous month' ), // 文案:下个月 nextMonth: ( 'Next month' ), // 文案:今年 curYear: ( 'This year' ), // 文案:下一年 prevYear: ( 'Previous year' ), // 文案:下一年 nextYear: ( 'Next year' ), // 文案:当前二十年 curTwentyYears: ( 'Latest 20 years' ), // 文案:上二十年 prevTwentyYears: ( 'Previous 20 years' ), // 文案:下二十年 nextTwentyYears: ( 'Next 20 years' ), // 变量:该语言日期表达中 [月] 是否在 [年] 之前,是的话为 - true,否则 - false monthBeforeYear: ( true ), // 变量:该语言日期表达中 [年] 的表达方式,其中 YYYY 为年份数字 yearFormat: ( ' YYYY' ), // 文案:选择时间 selectTime: ( 'Select a time' ), // 文案:选择日期 selectDate: ( 'Select a date' ), // 文案:输入格式错误 invalidFormat: (format) => ( `Invalid format. The format should be ${format}` ), // 文案:时间不合法 invalidTime: ( `Invalid time` ), }; |