-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
106 additions
and
5 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
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,8 @@ | ||
base_locale: en | ||
|
||
data: | ||
read: | ||
- config/locales/administrate-field-active_storage.%{locale}.yml | ||
|
||
ignore: | ||
- 'administrate.actions.*' |
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,10 @@ | ||
--- | ||
en: | ||
administrate: | ||
fields: | ||
active_storage: | ||
add: Add | ||
attachment: Attachment | ||
no_attachment: No attachment | ||
remove: Remove | ||
replace: Replace |
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,10 @@ | ||
--- | ||
ru: | ||
administrate: | ||
fields: | ||
active_storage: | ||
add: Добавить | ||
attachment: Вложение | ||
no_attachment: Нет | ||
remove: Удалить | ||
replace: Заменить |
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,35 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'i18n/tasks' | ||
|
||
# Template i18n-tasks test file from https://github.com/glebm/i18n-tasks/blob/main/templates/rspec/i18n_spec.rb | ||
RSpec.describe I18n do | ||
let(:i18n) { I18n::Tasks::BaseTask.new } | ||
let(:missing_keys) { i18n.missing_keys } | ||
let(:unused_keys) { i18n.unused_keys } | ||
let(:inconsistent_interpolations) { i18n.inconsistent_interpolations } | ||
|
||
it 'does not have missing keys' do | ||
expect(missing_keys).to be_empty, | ||
"Missing #{missing_keys.leaves.count} i18n keys, run `i18n-tasks missing' to show them" | ||
end | ||
|
||
it 'does not have unused keys' do | ||
expect(unused_keys).to be_empty, | ||
"#{unused_keys.leaves.count} unused i18n keys, run `i18n-tasks unused' to show them" | ||
end | ||
|
||
it 'files are normalized' do | ||
non_normalized = i18n.non_normalized_paths | ||
error_message = "The following files need to be normalized:\n" \ | ||
"#{non_normalized.map { |path| " #{path}" }.join("\n")}\n" \ | ||
"Please run `i18n-tasks normalize' to fix" | ||
expect(non_normalized).to be_empty, error_message | ||
end | ||
|
||
it 'does not have inconsistent interpolations' do | ||
error_message = "#{inconsistent_interpolations.leaves.count} i18n keys have inconsistent interpolations.\n" \ | ||
"Run `i18n-tasks check-consistent-interpolations' to show them" | ||
expect(inconsistent_interpolations).to be_empty, error_message | ||
end | ||
end |