1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-02 20:15:22 +02: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:
Ricardo Siqueira de Oliveira Leite 2024-02-06 14:58:17 -03:00 committed by GitHub
parent 64c8774867
commit c8a659694d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
33 changed files with 177 additions and 102 deletions

View file

@ -1,7 +1,3 @@
class Account::Credit < ApplicationRecord
include Accountable
def type_name
"Credit Card"
end
end

View file

@ -1,7 +1,3 @@
class Account::Depository < ApplicationRecord
include Accountable
def type_name
"Bank Accounts"
end
end

View file

@ -1,7 +1,3 @@
class Account::Investment < ApplicationRecord
include Accountable
def type_name
"Investments"
end
end

View file

@ -1,7 +1,3 @@
class Account::Loan < ApplicationRecord
include Accountable
def type_name
"Loan"
end
end

View file

@ -1,7 +1,3 @@
class Account::OtherAsset < ApplicationRecord
include Accountable
def type_name
"Other Asset"
end
end

View file

@ -1,7 +1,3 @@
class Account::OtherLiability < ApplicationRecord
include Accountable
def type_name
"Other Liability"
end
end

View file

@ -1,7 +1,3 @@
class Account::Property < ApplicationRecord
include Accountable
def type_name
"Real Estate"
end
end

View file

@ -1,7 +1,3 @@
class Account::Vehicle < ApplicationRecord
include Accountable
def type_name
"Vehicle"
end
end