mirror of
https://github.com/owncloud/bookmarks.git
synced 2024-12-01 05:24:11 +01:00
fix untranslated items
This commit is contained in:
parent
55fa597d82
commit
6b08a50d7d
@ -19,7 +19,7 @@ $(document).ready(function() {
|
|||||||
allowSpaces: true,
|
allowSpaces: true,
|
||||||
availableTags: fullTags,
|
availableTags: fullTags,
|
||||||
onTagFinishRemoved: filterTagsChanged,
|
onTagFinishRemoved: filterTagsChanged,
|
||||||
placeholderText: t('bookmark', 'Filter by tag')
|
placeholderText: t('bookmarks', 'Filter by tag')
|
||||||
}).tagit('option', 'onTagAdded', filterTagsChanged);
|
}).tagit('option', 'onTagAdded', filterTagsChanged);
|
||||||
getBookmarks();
|
getBookmarks();
|
||||||
});
|
});
|
||||||
@ -129,7 +129,7 @@ function createEditDialog(record){
|
|||||||
var oc_dialog= $('#edit_dialog form').clone().dialog({
|
var oc_dialog= $('#edit_dialog form').clone().dialog({
|
||||||
width : 620,
|
width : 620,
|
||||||
height: 350,
|
height: 350,
|
||||||
title: t('bookmark', 'Edit bookmark'),
|
title: t('bookmarks', 'Edit bookmark'),
|
||||||
modal: true,
|
modal: true,
|
||||||
close : function(event, ui) {
|
close : function(event, ui) {
|
||||||
$(this).dialog('destroy').remove();
|
$(this).dialog('destroy').remove();
|
||||||
@ -232,7 +232,7 @@ function editBookmark(event) {
|
|||||||
rec_form.find('.bookmark_form_tags ul').tagit({
|
rec_form.find('.bookmark_form_tags ul').tagit({
|
||||||
allowSpaces: true,
|
allowSpaces: true,
|
||||||
availableTags: fullTags,
|
availableTags: fullTags,
|
||||||
placeholderText: t('bookmark', 'Tags')
|
placeholderText: t('bookmarks', 'Tags')
|
||||||
});
|
});
|
||||||
rec_form.bind('submit',submitBookmark);
|
rec_form.bind('submit',submitBookmark);
|
||||||
rec_form.find('.reset').bind('click',cancelBookmark);
|
rec_form.find('.reset').bind('click',cancelBookmark);
|
||||||
|
Loading…
Reference in New Issue
Block a user