mirror of
https://github.com/owncloud/bookmarks.git
synced 2024-11-29 04: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,
|
||||
availableTags: fullTags,
|
||||
onTagFinishRemoved: filterTagsChanged,
|
||||
placeholderText: t('bookmark', 'Filter by tag')
|
||||
placeholderText: t('bookmarks', 'Filter by tag')
|
||||
}).tagit('option', 'onTagAdded', filterTagsChanged);
|
||||
getBookmarks();
|
||||
});
|
||||
@ -129,7 +129,7 @@ function createEditDialog(record){
|
||||
var oc_dialog= $('#edit_dialog form').clone().dialog({
|
||||
width : 620,
|
||||
height: 350,
|
||||
title: t('bookmark', 'Edit bookmark'),
|
||||
title: t('bookmarks', 'Edit bookmark'),
|
||||
modal: true,
|
||||
close : function(event, ui) {
|
||||
$(this).dialog('destroy').remove();
|
||||
@ -232,7 +232,7 @@ function editBookmark(event) {
|
||||
rec_form.find('.bookmark_form_tags ul').tagit({
|
||||
allowSpaces: true,
|
||||
availableTags: fullTags,
|
||||
placeholderText: t('bookmark', 'Tags')
|
||||
placeholderText: t('bookmarks', 'Tags')
|
||||
});
|
||||
rec_form.bind('submit',submitBookmark);
|
||||
rec_form.find('.reset').bind('click',cancelBookmark);
|
||||
|
Loading…
Reference in New Issue
Block a user