X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/bf1f882eb8c91f8cc9ab98aa3d2c62d63016a295..12c1d5e6c05813a0697724277b4d8529a1a7c240:/lib/osm_community_index.rb?ds=inline diff --git a/lib/osm_community_index.rb b/lib/osm_community_index.rb index eb7948514..ca9d2d3b3 100644 --- a/lib/osm_community_index.rb +++ b/lib/osm_community_index.rb @@ -1,7 +1,9 @@ module OsmCommunityIndex def self.add_to_i18n - communities = Community.all - files = Dir.glob(Rails.root.join("node_modules/osm-community-index/i18n/*.yaml")) + # Filter the communities here to avoid loading excessive numbers of translations + communities = Community.where(:type => "osm-lc").where.not(:id => "OSMF") + + files = Rails.root.glob("node_modules/osm-community-index/i18n/*.yaml") files.each do |file| locale = File.basename(file, ".yaml") community_locale_yaml = YAML.safe_load(File.read(file))[locale]