-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KBP-124 #time 5m - Conflict was resolved.
- Loading branch information
Showing
17 changed files
with
175 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# frozen_string_literal: true | ||
|
||
module Cybele | ||
module Helpers | ||
module LocaleLanguage | ||
def configure_locale_language | ||
copy_file 'config/locales/tr.yml', 'config/locales/tr.yml' | ||
copy_file 'config/locales/email.tr.yml', 'config/locales/email.tr.yml' | ||
copy_file 'config/locales/models.tr.yml', 'config/locales/models.tr.yml' | ||
copy_file 'config/locales/view.tr.yml', 'config/locales/view.tr.yml' | ||
copy_file 'config/locales/email.en.yml', 'config/locales/email.en.yml' | ||
copy_file 'config/locales/models.en.yml', 'config/locales/models.en.yml' | ||
copy_file 'config/locales/view.en.yml', 'config/locales/view.en.yml' | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
en: | ||
email: | ||
salut: 'Hello %{user};' | ||
hello: 'Hello;' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
tr: | ||
email: | ||
salut: 'Merhaba %{user};' | ||
hello: 'Merhaba;' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
en: | ||
activerecord: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
tr: | ||
activerecord: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
tr: | ||
flash: | ||
actions: | ||
toggle_is_active: | ||
passive: '%{resource_name} başarıyla pasif edildi.' | ||
active: '%{resource_name} başarıyla aktif edildi.' | ||
create: | ||
notice: '%{resource_name} başarı ile yaratıldı.' | ||
update: | ||
notice: '%{resource_name} başarı ile güncellendi.' | ||
destroy: | ||
notice: '%{resource_name} başarı ile silindi.' | ||
alert: '%{resource_name} silinemedi.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
tr: | ||
phone: | ||
formats: | ||
long: '+99 (999) 999-9999' | ||
date: | ||
formats: | ||
excel: | ||
rails: '%d/%m/%Y' | ||
datepicker: | ||
rails: '%d/%m/%Y' | ||
js: 'd/m/Y' | ||
default: "%d/%m/%Y" | ||
year_month: "%Y-%B" | ||
date: '%d %B %Y' | ||
time: | ||
formats: | ||
certificate_completed_at_english: '%m/%d/%Y' | ||
certificate_completed_at: '%d/%m/%Y' | ||
datetimepicker_rails: '%d/%m/%Y %H:%M' | ||
datetimepicker: | ||
rails: '%d/%m/%Y %H:%M' | ||
js: 'd/m/Y H:i' | ||
default: "%d/%m/%Y %H:%M" | ||
year_month: "%Y-%B" | ||
date: '%d %B %Y' | ||
due_at: | ||
rails: '%d/%m/%Y %H:%M' | ||
js: 'd/m/Y H:i' | ||
number: | ||
currency: | ||
format: | ||
format: "%u %n" | ||
unit: "₺" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
en: | ||
view: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
tr: | ||
view: |