diff options
author | Volkan Gezer <volkangezer@gmail.com> | 2014-04-21 02:28:34 +0200 |
---|---|---|
committer | Volkan Gezer <volkangezer@gmail.com> | 2014-04-21 02:41:33 +0200 |
commit | 1aa7774178d5e6293faa63c572113fc36039f67e (patch) | |
tree | 6e58923f70f2f0614ad59d91127735b3d1e991f2 /apps/files/templates/index.php | |
parent | f2f5a53d3617f04082f3facb968e514abdd20ee3 (diff) | |
download | nextcloud-server-1aa7774178d5e6293faa63c572113fc36039f67e.tar.gz nextcloud-server-1aa7774178d5e6293faa63c572113fc36039f67e.zip |
make max. text translatable
Diffstat (limited to 'apps/files/templates/index.php')
-rw-r--r-- | apps/files/templates/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 95edd625cb3..a8437835d95 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -19,7 +19,7 @@ </div> <?php endif;?> <div id="upload" class="button" - title="<?php p($l->t('Upload') . ' max. '.$_['uploadMaxHumanFilesize']) ?>"> + title="<?php p($l->t('Upload (max. %s)', array($_['uploadMaxHumanFilesize']))) ?>"> <?php if($_['uploadMaxFilesize'] >= 0):?> <input type="hidden" id="max_upload" name="MAX_FILE_SIZE" value="<?php p($_['uploadMaxFilesize']) ?>"> <?php endif;?> |