mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 23:30:12 +01:00
Added locale selection to preferences
Mostly completed transition to full i18n Incorporated german translations by Ulf Klose <ulf.klose@gmail.com>
This commit is contained in:
parent
d57bd479f9
commit
338d4bb5a6
44 changed files with 1071 additions and 209 deletions
9
db/migrate/20110104200112_add_locale_to_preference.rb
Normal file
9
db/migrate/20110104200112_add_locale_to_preference.rb
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
class AddLocaleToPreference < ActiveRecord::Migration
|
||||
def self.up
|
||||
add_column :preferences, :locale, :string
|
||||
end
|
||||
|
||||
def self.down
|
||||
remove_column :preferences, :locale
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue