Browse Source

Fix name of external storages

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
pull/4551/head
Jan-Christoph Borchardt 9 years ago
committed by Morris Jobke
parent
commit
010b9c4609
  1. 3
      apps/files_external/js/app.js
  2. 2
      apps/files_external/js/mountsfilelist.js
  3. 2
      apps/files_external/templates/settings.php

3
apps/files_external/js/app.js

@ -35,7 +35,7 @@ OCA.External.App = {
);
this._extendFileList(this.fileList);
this.fileList.appName = t('files_external', 'External storage');
this.fileList.appName = t('files_external', 'External storages');
return this.fileList;
},
@ -111,4 +111,3 @@ $(document).ready(function() {
}
/* End Status Manager */
});

2
apps/files_external/js/mountsfilelist.js

@ -28,7 +28,7 @@
FileList.prototype = _.extend({}, OCA.Files.FileList.prototype,
/** @lends OCA.External.FileList.prototype */ {
appName: 'External storage',
appName: 'External storages',
/**
* @private

2
apps/files_external/templates/settings.php

@ -88,7 +88,7 @@
?>
<form data-can-create="<?php echo $canCreateMounts?'true':'false' ?>" id="files_external" class="section" data-encryption-enabled="<?php echo $_['encryptionEnabled']?'true': 'false'; ?>">
<h2 data-anchor-name="external-storage"><?php p($l->t('External storage')); ?></h2>
<h2 data-anchor-name="external-storage"><?php p($l->t('External storages')); ?></h2>
<?php if (isset($_['dependencies']) and ($_['dependencies']<>'') and $canCreateMounts) print_unescaped(''.$_['dependencies'].''); ?>
<table id="externalStorage" class="grid" data-admin='<?php print_unescaped(json_encode($_['visibilityType'] === BackendService::VISIBILITY_ADMIN)); ?>'>
<thead>

Loading…
Cancel
Save