summaryrefslogtreecommitdiff
path: root/lib/gitlab/i18n/metadata_entry.rb
blob: 36fc1bcdcb7799e034eb4bd11425102c24948a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module Gitlab
  module I18n
    class MetadataEntry
      attr_reader :entry_data

      # Avoid testing too many plurals if `nplurals` was incorrectly set.
      # Based on info on https://www.gnu.org/software/gettext/manual/html_node/Plural-forms.html
      # which mentions special cases for numbers ending in 2 digits
      MAX_FORMS_TO_TEST = 101

      def initialize(entry_data)
        @entry_data = entry_data
      end

      def expected_forms
        return nil unless plural_information

        plural_information['nplurals'].to_i
      end

      def forms_to_test
        @forms_to_test ||= [expected_forms, MAX_FORMS_TO_TEST].compact.min
      end

      private

      def plural_information
        return @plural_information if defined?(@plural_information)

        if plural_line = entry_data[:msgstr].detect { |metadata_line| metadata_line.starts_with?('Plural-Forms: ') }
          @plural_information = Hash[plural_line.scan(/(\w+)=([^;\n]+)/)]
        end
      end
    end
  end
end