Sha256: 6e50eaccc9bdf41219f4cd3669a6bd6ac16d2822d46f0dd1e01f7967190ed2f7
Contents?: true
Size: 426 Bytes
Versions: 45
Compression:
Stored size: 426 Bytes
Contents
# frozen_string_literal: true module Decidim # This type represents a localized string in a single language. LocalizedStringType = GraphQL::ObjectType.define do name "LocalizedString" description "Represents a particular translation of a LocalizedStringType" field :locale, !types.String, "The standard locale of this translation." field :text, types.String, "The content of this translation." end end
Version data entries
45 entries across 45 versions & 2 rubygems