diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-08 09:26:57 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-05-08 09:26:57 +0000 |
commit | 5c88c1f50bd4295325cbb1a69704cf5423b20b2b (patch) | |
tree | 6e7f0891c9dbff690c41f0088472c0838abd3311 /test/functional | |
parent | d85f5518d903a660a3645747d5c47bb8cee1bf35 (diff) | |
download | redmine-5c88c1f50bd4295325cbb1a69704cf5423b20b2b.tar.gz redmine-5c88c1f50bd4295325cbb1a69704cf5423b20b2b.zip |
Changed the length of 'language' column in users table from 2 to 5, to allow long language codes like pt-br.
Updated portuguese translation (Arthur Zapparoli).
Current pt translation moved to pt-br.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@518 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/application_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/application_controller_test.rb b/test/functional/application_controller_test.rb index c766229c8..3dbeadb97 100644 --- a/test/functional/application_controller_test.rb +++ b/test/functional/application_controller_test.rb @@ -30,7 +30,7 @@ class ApplicationControllerTest < Test::Unit::TestCase # check that all 6 supported languages are valid def test_localization - assert_equal 9, GLoc.valid_languages.size + assert_equal 10, GLoc.valid_languages.size GLoc.valid_languages.each do |lang| assert set_language_if_valid(lang) end |