##// END OF EJS Templates
[#20288] Add a note about case-insensitivity of CodeRay language names/aliases....
[#20288] Add a note about case-insensitivity of CodeRay language names/aliases. 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@14490 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13490:000124f44f53
r14108:ca4b437d4559
Show More
admin_helper.rb
35 lines | 1.3 KiB | text/x-ruby | RubyLexer
Jean-Philippe Lang
Added encoding comment to helpers (#9792)....
r8090 # encoding: utf-8
#
Toshi MARUYAMA
remove trailing white-spaces from app/helpers/admin_helper.rb....
r6729 # Redmine - project management software
Jean-Philippe Lang
Copyright update....
r13490 # Copyright (C) 2006-2015 Jean-Philippe Lang
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 #
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
Toshi MARUYAMA
remove trailing white-spaces from app/helpers/admin_helper.rb....
r6729 #
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
Toshi MARUYAMA
remove trailing white-spaces from app/helpers/admin_helper.rb....
r6729 #
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 # You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Jean-Philippe Lang
Initial commit...
r2 module AdminHelper
Jean-Philippe Lang
Added the ability to archive projects:...
r546 def project_status_options_for_select(selected)
Toshi MARUYAMA
remove trailing white-spaces from app/helpers/admin_helper.rb....
r6729 options_for_select([[l(:label_all), ''],
Jean-Philippe Lang
Ability to close projects (read-only) (#3640)....
r9700 [l(:project_status_active), '1'],
[l(:project_status_closed), '5'],
[l(:project_status_archived), '9']], selected.to_s)
Jean-Philippe Lang
Added the ability to archive projects:...
r546 end
Jean-Philippe Lang
Adds "Check for updates" for installed plugins (#3177)....
r12767
def plugin_data_for_updates(plugins)
data = {"v" => Redmine::VERSION.to_s, "p" => {}}
plugins.each do |plugin|
data["p"].merge! plugin.id => {"v" => plugin.version, "n" => plugin.name, "a" => plugin.author}
end
data
end
Jean-Philippe Lang
Initial commit...
r2 end