Sha256: f988478db432327b0b6b74f3fbddacecb9634008ba4cb2327bad12a81e6d568d

Contents?: true

Size: 962 Bytes

Versions: 7

Compression:

Stored size: 962 Bytes

Contents

module Frameit
  # This class will parse the .string files
  class StringsParser
    def self.parse(path)
      UI.user_error! "Couldn't find strings file at path '#{path}'" unless File.exist? path
      UI.user_error! "Must be .strings file, only got '#{path}'" unless path.end_with? ".strings"

      result = {}

      # A .strings file is UTF-16 encoded. We only want to deal with UTF-8
      content = `iconv -f UTF-16 -t UTF-8 '#{path}'`

      content.split("\n").each_with_index do |line, index|
        begin
          # We don't care about comments and empty lines
          if line.start_with? '"'
            key = line.match(/"(.*)" \= /)[1]
            value = line.match(/ \= "(.*)"/)[1]

            result[key] = value
          end
        rescue => ex
          UI.error "Error parsing #{path} line #{index + 1}: '#{line}'"
          UI.verbose "#{ex.message}\n#{ex.backtrace.join('\n')}"
        end
      end

      result
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
frameit-2.7.0 lib/frameit/strings_parser.rb
frameit-2.6.2 lib/frameit/strings_parser.rb
frameit-2.6.1 lib/frameit/strings_parser.rb
frameit-2.6.0 lib/frameit/strings_parser.rb
frameit-2.5.1 lib/frameit/strings_parser.rb
frameit-2.5.0 lib/frameit/strings_parser.rb
frameit-2.4.2 lib/frameit/strings_parser.rb