some characters in comments avoid finding some strings to translate

This commit is contained in:
scambra 2012-09-21 12:05:01 +02:00
parent e48811017d
commit d5211f9615
2 changed files with 4 additions and 4 deletions

View File

@ -106,7 +106,7 @@ var OCdialogs = {
var c_name = 'oc-dialog-'+OCdialogs.dialogs_counter+'-content';
var c_id = '#'+c_name;
var d = '<div id="'+c_name+'" title="'+title+'"><select id="dirtree"><option value="0">'+OC.currentUser+'</option></select><div id="filelist"></div><div class="filepicker_loader"><img src="'+OC.filePath('gallery','img','loading.gif')+'"></div></div>';
if (!modal) modal = false; // Huh..?
if (!modal) modal = false; // Huh..
if (!multiselect) multiselect = false;
$('body').append(d);
$(c_id + ' #dirtree').focus(function() {

View File

@ -79,7 +79,7 @@ OC.Share={
var item = itemSource;
}
if (typeof OC.Share.statuses[item] === 'undefined') {
// NOTE: Check doesn't always work and misses some shares, fix later
// NOTE: Check does not always work and misses some shares, fix later
checkShares = true;
} else {
checkShares = true;
@ -100,7 +100,7 @@ OC.Share={
callback(result.data);
}
} else {
OC.dialogs.alert(result.data.message, t('core', 'Error while sharing');
OC.dialogs.alert(result.data.message, t('core', 'Error while sharing'));
}
});
},
@ -126,7 +126,7 @@ OC.Share={
var data = OC.Share.loadItem(itemType, itemSource);
var html = '<div id="dropdown" class="drop" data-item-type="'+itemType+'" data-item-source="'+itemSource+'">';
if (data.reshare) {
if (data.reshare.share_type == OC.Share.SHARE_TYPE_GROUP) { // %s
if (data.reshare.share_type == OC.Share.SHARE_TYPE_GROUP) {
html += '<span class="reshare">'+t('core', 'Shared with you and the group %s by %s', data.reshare.share_with, data.reshare.uid_owner)+'</span>';
} else {
html += '<span class="reshare">'+t('core', 'Shared with you by %s', data.reshare.uid_owner)+'</span>';