mirror of
https://github.com/we-promise/sure.git
synced 2026-04-19 03:54:08 +00:00
Start I18n Internationalization setup (#276)
* start internationalization_setup * add passwords views translations * add account views translations * fix translations * temporary disable i18n used key
This commit is contained in:
committed by
GitHub
parent
64c8774867
commit
c8a659694d
@@ -1,7 +1,3 @@
|
||||
class Account::Credit < ApplicationRecord
|
||||
include Accountable
|
||||
|
||||
def type_name
|
||||
"Credit Card"
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
class Account::Depository < ApplicationRecord
|
||||
include Accountable
|
||||
|
||||
def type_name
|
||||
"Bank Accounts"
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
class Account::Investment < ApplicationRecord
|
||||
include Accountable
|
||||
|
||||
def type_name
|
||||
"Investments"
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
class Account::Loan < ApplicationRecord
|
||||
include Accountable
|
||||
|
||||
def type_name
|
||||
"Loan"
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
class Account::OtherAsset < ApplicationRecord
|
||||
include Accountable
|
||||
|
||||
def type_name
|
||||
"Other Asset"
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
class Account::OtherLiability < ApplicationRecord
|
||||
include Accountable
|
||||
|
||||
def type_name
|
||||
"Other Liability"
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
class Account::Property < ApplicationRecord
|
||||
include Accountable
|
||||
|
||||
def type_name
|
||||
"Real Estate"
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
class Account::Vehicle < ApplicationRecord
|
||||
include Accountable
|
||||
|
||||
def type_name
|
||||
"Vehicle"
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user