diff --git a/Library/Homebrew/Gemfile b/Library/Homebrew/Gemfile index 35bae40352..1a5f5d8383 100644 --- a/Library/Homebrew/Gemfile +++ b/Library/Homebrew/Gemfile @@ -41,7 +41,6 @@ end gem "activesupport" gem "addressable" gem "concurrent-ruby" -gem "i18n" gem "mechanize" gem "patchelf" gem "plist" diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index ead2916c52..b588a1cd64 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -231,7 +231,6 @@ DEPENDENCIES byebug concurrent-ruby did_you_mean - i18n json_schemer mechanize minitest diff --git a/Library/Homebrew/manpages.rb b/Library/Homebrew/manpages.rb index 4f32014028..42b91bc3ac 100644 --- a/Library/Homebrew/manpages.rb +++ b/Library/Homebrew/manpages.rb @@ -3,10 +3,6 @@ require "cli/parser" require "erb" -require "i18n" - -I18n.backend.available_locales # Initialize locales so they can be overwritten. -I18n.backend.store_translations :en, support: { array: { last_word_connector: " and " } } SOURCE_PATH = (HOMEBREW_LIBRARY_PATH/"manpages").freeze TARGET_MAN_PATH = (HOMEBREW_REPOSITORY/"manpages").freeze @@ -40,7 +36,6 @@ module Homebrew markup = build_man_page(quiet: quiet) convert_man_page(markup, TARGET_DOC_PATH/"Manpage.md") - markup = I18n.transliterate(markup, locale: :en) convert_man_page(markup, TARGET_MAN_PATH/"brew.1") end