Skip to content

Commit

Permalink
BUGFIX Fixing broken labels in UploadField
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Harvey committed Apr 18, 2012
1 parent a1327fa commit 63d91f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lang/en.yml
Expand Up @@ -561,7 +561,7 @@ en:
DROPFILES: "drop files"
EDITINFO: "Edit this file"
FIELDNOTSET: "File information not found"
FROMCOMPUTER: "From files"
FROMCOMPUTER: "Upload from your computer"
MAXNUMBEROFFILES: "Max number of %s file(s) exceeded."
REMOVEERROR: "Error removing file"
REMOVEINFO: "Remove this file from here, but do not delete it from the file store"
Expand Down
4 changes: 2 additions & 2 deletions templates/UploadField.ss
Expand Up @@ -47,12 +47,12 @@
<% _t('UploadField.FROMCOMPUTER', 'From your computer') %>
<input id="$id" name="$getName" class="$extraClass ss-uploadfield-fromcomputer-fileinput" data-config="$configString" type="file"<% if $multiple %> multiple="multiple"<% end_if %> />
</label>
<button class="ss-uploadfield-fromfiles ss-ui-button ui-corner-all" title="<% _t('UploadField.FROMCOMPUTERINFO', 'Select from from files') %>" data-icon="network-cloud"><% _t('UploadField.FROMCOMPUTER', 'From files') %></button>
<button class="ss-uploadfield-fromfiles ss-ui-button ui-corner-all" title="<% _t('UploadField.FROMCOMPUTERINFO', 'Select from files') %>" data-icon="network-cloud"><% _t('UploadField.FROMFILES', 'From files') %></button>
<% if not $autoUpload %>
<button class="ss-uploadfield-startall ss-ui-button ui-corner-all" title="<% _t('UploadField.STARTALLINFO', 'Start all uploads') %>" data-icon="navigation"><% _t('UploadField.STARTALL', 'Start all') %></button>
<% end_if %>
<div class="clear"><!-- --></div>
</div>
<div class="clear"><!-- --></div>
</div>
<% end_if %>
<% end_if %>

0 comments on commit 63d91f9

Please sign in to comment.