Sha256: 2588d044eff020e5cda9aadb2575831cbe06b3eef5c17b0a326349255352827d

Contents?: true

Size: 1.8 KB

Versions: 56

Compression:

Stored size: 1.8 KB

Contents

require 'puppet/gettext/config'

module Puppet::ModuleTranslations

  # @api private
  # Loads translation files for each of the specified modules,
  # if present. Requires the modules to have `forge_name` specified.
  # @param [[Module]] modules a list of modules for which to
  #        load translations
  def self.load_from_modulepath(modules)
    modules.each do |mod|
      next unless mod.forge_name && mod.has_translations?(Puppet::GettextConfig.current_locale)

      module_name = mod.forge_name.tr('/', '-')
      if Puppet::GettextConfig.load_translations(module_name, mod.locale_directory, :po)
        Puppet.debug "Loaded translations for #{module_name}."
      elsif Puppet::GettextConfig.gettext_loaded?
        Puppet.debug "Could not find translation files for #{module_name} at #{mod.locale_directory}. Skipping translation initialization."
      else
        Puppet.warn_once("gettext_unavailable", "gettext_unavailable", "No gettext library found, skipping translation initialization.")
      end
    end
  end

  # @api private
  # Loads translation files that have been pluginsync'd for modules
  # from the $vardir.
  # @param [String] vardir the path to Puppet's vardir
  def self.load_from_vardir(vardir)
    locale = Puppet::GettextConfig.current_locale
    Dir.glob("#{vardir}/locales/#{locale}/*.po") do |f|
      module_name = File.basename(f, ".po")
      if Puppet::GettextConfig.load_translations(module_name, File.join(vardir, "locales"), :po)
        Puppet.debug "Loaded translations for #{module_name}."
      elsif Puppet::GettextConfig.gettext_loaded?
        Puppet.debug "Could not load translations for #{module_name}."
      else
        Puppet.warn_once("gettext_unavailable", "gettext_unavailable", "No gettext library found, skipping translation initialization.")
      end
    end
  end
end

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
puppet-5.5.22 lib/puppet/gettext/module_translations.rb
puppet-5.5.22-x86-mingw32 lib/puppet/gettext/module_translations.rb
puppet-5.5.22-x64-mingw32 lib/puppet/gettext/module_translations.rb
puppet-5.5.22-universal-darwin lib/puppet/gettext/module_translations.rb
puppet-6.17.0 lib/puppet/gettext/module_translations.rb
puppet-6.17.0-x86-mingw32 lib/puppet/gettext/module_translations.rb
puppet-6.17.0-x64-mingw32 lib/puppet/gettext/module_translations.rb
puppet-6.17.0-universal-darwin lib/puppet/gettext/module_translations.rb
puppet-5.5.21 lib/puppet/gettext/module_translations.rb
puppet-5.5.21-x86-mingw32 lib/puppet/gettext/module_translations.rb
puppet-5.5.21-x64-mingw32 lib/puppet/gettext/module_translations.rb
puppet-5.5.21-universal-darwin lib/puppet/gettext/module_translations.rb
puppet-6.16.0 lib/puppet/gettext/module_translations.rb
puppet-6.16.0-x86-mingw32 lib/puppet/gettext/module_translations.rb
puppet-6.16.0-x64-mingw32 lib/puppet/gettext/module_translations.rb
puppet-6.16.0-universal-darwin lib/puppet/gettext/module_translations.rb
puppet-6.15.0 lib/puppet/gettext/module_translations.rb
puppet-6.15.0-x86-mingw32 lib/puppet/gettext/module_translations.rb
puppet-6.15.0-x64-mingw32 lib/puppet/gettext/module_translations.rb
puppet-6.15.0-universal-darwin lib/puppet/gettext/module_translations.rb