Browse Source

js i18n: quick-post-controls.js

pull/40/head
czaks 11 years ago
committed by Michael Foster
parent
commit
a1b739b818
  1. 12
      js/quick-post-controls.js

12
js/quick-post-controls.js

@ -24,17 +24,17 @@ $(document).ready(function(){
'<input type="hidden" name="delete_' + id + '">' +
'<label for="password_' + id + '">Password</label>: ' +
'<label for="password_' + id + '">'+_("Password")+'</label>: ' +
'<input id="password_' + id + '" type="password" name="password" size="11" maxlength="18">' +
'<input title="Delete file only" type="checkbox" name="file" id="delete_file_' + id + '">' +
'<label for="delete_file_' + id + '">File</label>' +
' <input type="submit" name="delete" value="Delete">' +
'<input title="'+_('Delete file only')+'" type="checkbox" name="file" id="delete_file_' + id + '">' +
'<label for="delete_file_' + id + '">'+_('File')+'</label>' +
' <input type="submit" name="delete" value="'+_('Delete')+'">' +
'<br>' +
'<label for="reason_' + id + '">Reason</label>: ' +
'<label for="reason_' + id + '">'+_('Reason')+'</label>: ' +
'<input id="reason_' + id + '" type="text" name="reason" size="20" maxlength="100">' +
' <input type="submit" name="report" value="Report">' +
' <input type="submit" name="report" value="'+_('Report')+'">' +
'</div>' +
'</form>');
post_form

Loading…
Cancel
Save