New translated screens for #354.
This commit is contained in:
parent
3e346aa695
commit
9da944bcff
|
@ -8,7 +8,7 @@
|
||||||
keep-first
|
keep-first
|
||||||
open-on-focus
|
open-on-focus
|
||||||
@input="fetchUsers"
|
@input="fetchUsers"
|
||||||
@focus.once="($event) => fetchUsers($event.target.value)"
|
@focus.once="($event) => loadUsers($event.target.value)"
|
||||||
@select="onSelect"
|
@select="onSelect"
|
||||||
:loading="isFetchingUsers"
|
:loading="isFetchingUsers"
|
||||||
field="name"
|
field="name"
|
||||||
|
@ -60,7 +60,7 @@ export default {
|
||||||
...mapActions('activity', [
|
...mapActions('activity', [
|
||||||
'fetchUsers'
|
'fetchUsers'
|
||||||
]),
|
]),
|
||||||
fetchUsers: _.debounce(function (search) {
|
loadUsers: _.debounce(function (search) {
|
||||||
|
|
||||||
// String update
|
// String update
|
||||||
if (search != this.usersSearchQuery) {
|
if (search != this.usersSearchQuery) {
|
||||||
|
@ -102,7 +102,7 @@ export default {
|
||||||
});
|
});
|
||||||
}, 500),
|
}, 500),
|
||||||
fetchMoreUsers: _.debounce(function () {
|
fetchMoreUsers: _.debounce(function () {
|
||||||
this.fetchUsers(this.usersSearchQuery)
|
this.loadUsers(this.usersSearchQuery)
|
||||||
}, 250),
|
}, 250),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -231,9 +231,9 @@ return apply_filters( 'tainacan-admin-i18n', [
|
||||||
'label_inherited' => __( 'Inherited', 'tainacan' ),
|
'label_inherited' => __( 'Inherited', 'tainacan' ),
|
||||||
'label_core_title' => __( 'Core Title', 'tainacan' ),
|
'label_core_title' => __( 'Core Title', 'tainacan' ),
|
||||||
'label_core_description' => __( 'Core Description', 'tainacan' ),
|
'label_core_description' => __( 'Core Description', 'tainacan' ),
|
||||||
'label_core_title' => __( 'Core Author', 'tainacan' ),
|
'label_core_author' => __( 'Core Author', 'tainacan' ),
|
||||||
'label_sorting' => __( 'Sorting', 'tainacan' ),
|
'label_sorting' => __( 'Sorting', 'tainacan' ),
|
||||||
'label_sorting_direction' => __( 'Sorting direction', 'tainacan' ),
|
'label_sorting_direction' => __( 'Sorting direction', 'tainacan' ),
|
||||||
'label_sort' => __( 'Sort', 'tainacan' ),
|
'label_sort' => __( 'Sort', 'tainacan' ),
|
||||||
'label_activity_date' => __( 'Activity date', 'tainacan' ),
|
'label_activity_date' => __( 'Activity date', 'tainacan' ),
|
||||||
'label_activity_title' => __( 'Activity', 'tainacan' ),
|
'label_activity_title' => __( 'Activity', 'tainacan' ),
|
||||||
|
@ -473,7 +473,7 @@ return apply_filters( 'tainacan-admin-i18n', [
|
||||||
'instruction_select_a_parent_term' => __( 'Select a parent term:', 'tainacan' ),
|
'instruction_select_a_parent_term' => __( 'Select a parent term:', 'tainacan' ),
|
||||||
'instruction_select_a_metadatum' => __( 'Select a metadatum', 'tainacan' ),
|
'instruction_select_a_metadatum' => __( 'Select a metadatum', 'tainacan' ),
|
||||||
'instruction_cover_page' => __( 'Type to search a Page to choose.', 'tainacan' ),
|
'instruction_cover_page' => __( 'Type to search a Page to choose.', 'tainacan' ),
|
||||||
'instruction_type_search_users_filter' => __( 'Type to search users...', 'tainacan' ),
|
'instruction_type_search_users' => __( 'Type to search users...', 'tainacan' ),
|
||||||
'instruction_type_search_users_filter' => __( 'Type to search users to filter...', 'tainacan' ),
|
'instruction_type_search_users_filter' => __( 'Type to search users to filter...', 'tainacan' ),
|
||||||
'instruction_type_search_roles_filter' => __( 'Type to search roles to filter...', 'tainacan' ),
|
'instruction_type_search_roles_filter' => __( 'Type to search roles to filter...', 'tainacan' ),
|
||||||
'instruction_select_a_parent_collection' => __( 'Select a parent collection.', 'tainacan' ),
|
'instruction_select_a_parent_collection' => __( 'Select a parent collection.', 'tainacan' ),
|
||||||
|
|
Loading…
Reference in New Issue