mirror of https://github.com/rancher/ui.git
load locale polyfills for non-intl supporting browsers (#701)
This commit is contained in:
parent
bcd8b327d9
commit
1c0bb8433c
|
|
@ -53,7 +53,7 @@
|
|||
<tbody>
|
||||
{{#each model.auditLog as |log|}}
|
||||
<tr>
|
||||
<td data-title="{{t 'auditLogsPage.table.time'}}:">{{format-relative log.created interval=C.LANGUAGE.FORMAT_RELATIVE_TIMEOUT}}</td>
|
||||
<td data-title="{{t 'auditLogsPage.table.time'}}:">{{date-from-now log.created}}</td>
|
||||
<td data-title="{{t 'auditLogsPage.table.eventType'}}:" class="force-wrap" title="{{log.eventType}}">
|
||||
{{log.eventType}} <i class="icon icon-info addtl-info-trigger" {{action 'showResponseObjects' log.requestObject log.responseObject }}></i>
|
||||
</td>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
module.exports = function(environment) {
|
||||
return {
|
||||
locales: null,
|
||||
locales: ['en-us'],
|
||||
baseLocale: 'en-us',
|
||||
disablePolyfill: false,
|
||||
publicOnly: true,
|
||||
|
|
|
|||
|
|
@ -106,7 +106,7 @@ auditLogsPage:
|
|||
placeholder: "Auth Type:"
|
||||
dropdownPlaceholder: 'Select an Auth Type:'
|
||||
dropdownList:
|
||||
clearButtonText: Clear All
|
||||
clearButtonText: Clear Filters
|
||||
searchButtonText: Search
|
||||
table:
|
||||
time: Time
|
||||
|
|
|
|||
Loading…
Reference in New Issue