##// END OF EJS Templates
[#20288] Make clear that syntax highlighting cannot only be used in wiki pages....
[#20288] Make clear that syntax highlighting cannot only be used in wiki pages. Regarding the i18n: I used English as the base language. The changed sentence was the same in 93 out of 98 language files, public\help\xx[-xx]\wiki_syntax_detailed_[markdown||textile].html. The only five exceptions were: * cs; public\help\cs\wiki_syntax_detailed_textile.html * fr; public\help\fr\wiki_syntax_detailed_textile.html * ja; public\help\ja\wiki_syntax_detailed_textile.html * ru; public\help\ru\qiki_syntax_detailed_textile.html * zh-tw; public\help\zh-tw\wiki_syntax_detailed_textile.html In the above given files, the changed sentence is translated. I have replaced the whole translated sentence with the new English base sentence, as such leaving new translations up to translators. Contributed by Mischa The Evil. git-svn-id: http://svn.redmine.org/redmine/trunk@14491 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13218:36fc7beb2fe2
r14109:0554143d7e6f
Show More
create.js.erb
12 lines | 522 B | text/plain | TextLexer
$('#tab-content-members').html('<%= escape_javascript(render :partial => 'projects/settings/members') %>');
hideOnLoad();
<% if @members.present? && @members.all? {|m| m.valid? } %>
hideModal();
<% @members.each do |member| %>
$("#member-<%= member.id %>").effect("highlight");
<% end %>
<% elsif @members.present? %>
<% errors = @members.collect {|m| m.errors.full_messages}.flatten.uniq.join(', ') %>
alert('<%= raw(escape_javascript(l(:notice_failed_to_save_members, :errors => errors))) %>');
<% end %>