2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
module Gitlab
|
|
|
|
module I18n
|
|
|
|
class MetadataEntry
|
|
|
|
attr_reader :entry_data
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
# 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
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
def initialize(entry_data)
|
|
|
|
@entry_data = entry_data
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def expected_forms
|
2019-07-07 11:18:12 +05:30
|
|
|
return unless plural_information
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
plural_information['nplurals'].to_i
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
def forms_to_test
|
|
|
|
@forms_to_test ||= [expected_forms, MAX_FORMS_TO_TEST].compact.min
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
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
|