diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2021-09-03 09:29:47 +0200 |
---|---|---|
committer | szaimen (Rebase PR Action) <szaimen@e.mail.de> | 2021-09-13 12:44:31 +0000 |
commit | a097695dad09ddd43837461adfa07224062961f2 (patch) | |
tree | f6f962518562c1709e5b6b1d907eac52acecd5c6 /apps/files_sharing/templates | |
parent | 0dcc5c0e9f346912ed8c263950ad91f35a41bff8 (diff) | |
download | nextcloud-server-a097695dad09ddd43837461adfa07224062961f2.tar.gz nextcloud-server-a097695dad09ddd43837461adfa07224062961f2.zip |
l10n: Remove a text string from translation
Removal of a text string from a translation in Transifex.
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/public.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index e301b41c319..c33ea3db09b 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -75,7 +75,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size); <?php if (isset($_['mimetype']) && strpos($_['mimetype'], 'image') === 0) { ?> <div class="directDownload"> <div> - <?php p($l->t('%s', [$_['filename']]))?> (<?php p($_['fileSize']) ?>) + <?php p('%s', [$_['filename']])?> (<?php p($_['fileSize']) ?>) </div> <a href="<?php p($_['downloadURL']); ?>" id="downloadFile" class="button"> <span class="icon icon-download"></span> @@ -87,7 +87,7 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size); <?php if ($_['previewURL'] === $_['downloadURL'] && !$_['hideDownload']): ?> <div class="directDownload"> <div> - <?php p($l->t('%s', [$_['filename']]))?> (<?php p($_['fileSize']) ?>) + <?php p('%s', [$_['filename']])?> (<?php p($_['fileSize']) ?>) </div> <a href="<?php p($_['downloadURL']); ?>" id="downloadFile" class="button"> <span class="icon icon-download"></span> |