]> source.dussan.org Git - nextcloud-server.git/commitdiff
some characters in comments avoid finding some strings to translate
authorscambra <sergio@entrecables.com>
Fri, 21 Sep 2012 10:05:01 +0000 (12:05 +0200)
committerscambra <sergio@entrecables.com>
Fri, 21 Sep 2012 10:05:01 +0000 (12:05 +0200)
core/js/oc-dialogs.js
core/js/share.js

index 53a7a8752c988c26ce92eb15cbcd6291ff2aa346..2467af6112137ce55ed8920c2a55a617ccdc6dbc 100644 (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() {
index e18a2c0e20417dadd49f345bab5b42fa55325a9b..c105a27dc0e2a6810f861e8b45a266875198bc31 100644 (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>';