Class: PhraseApp::RequestParams::StyleguideParams
- Inherits:
-
OpenStruct
- Object
- OpenStruct
- PhraseApp::RequestParams::StyleguideParams
- Defined in:
- lib/phraseapp-ruby.rb
Overview
StyleguideParams
Parameters:
- audience
-
Audience description
- business
-
Description of the business
- company_branding
-
Company branding to remain consistent.
- formatting
-
Formatting requirements and character limitations.
- glossary_terms
-
List of terms and/or phrases that need to be translated consistently.
- grammar_consistency
-
Formal or informal pronouns, consistent conjugation, grammatical gender
- grammatical_person
-
Can be one of: not_specified, first_person_singular, second_person_singular, third_person_singular_masculine, third_person_singular_feminine, third_person_singular_neuter, first_person_plural, second_person_plural, third_person_plural.
- literal_translation
-
Can be one of: Cultural/Conversational, Literal, Neutral.
- overall_tone
-
Tone requirement descriptions
- samples
-
Provide links to sample product pages, FAQ pages, etc. to give the translator a point of reference. You can also provide past translations. Even snippets or short paragraphs are helpful for maintaining consistency.
- target_audience
-
Can be one of: not_specified, children, teenager, young_adults, adults, old_adults.
- title
-
Style guide title
- vocabulary_type
-
Can be one of: not_specified, popular, technical, fictional.
Instance Method Summary collapse
- #audience=(val) ⇒ Object
- #business=(val) ⇒ Object
- #company_branding=(val) ⇒ Object
- #formatting=(val) ⇒ Object
- #glossary_terms=(val) ⇒ Object
- #grammar_consistency=(val) ⇒ Object
- #grammatical_person=(val) ⇒ Object
- #literal_translation=(val) ⇒ Object
- #overall_tone=(val) ⇒ Object
- #samples=(val) ⇒ Object
- #target_audience=(val) ⇒ Object
- #title=(val) ⇒ Object
- #validate ⇒ Object
- #vocabulary_type=(val) ⇒ Object
Instance Method Details
#audience=(val) ⇒ Object
1096 1097 1098 |
# File 'lib/phraseapp-ruby.rb', line 1096 def audience=(val) super(val) end |
#business=(val) ⇒ Object
1100 1101 1102 |
# File 'lib/phraseapp-ruby.rb', line 1100 def business=(val) super(val) end |
#company_branding=(val) ⇒ Object
1104 1105 1106 |
# File 'lib/phraseapp-ruby.rb', line 1104 def company_branding=(val) super(val) end |
#formatting=(val) ⇒ Object
1108 1109 1110 |
# File 'lib/phraseapp-ruby.rb', line 1108 def formatting=(val) super(val) end |
#glossary_terms=(val) ⇒ Object
1112 1113 1114 |
# File 'lib/phraseapp-ruby.rb', line 1112 def glossary_terms=(val) super(val) end |
#grammar_consistency=(val) ⇒ Object
1116 1117 1118 |
# File 'lib/phraseapp-ruby.rb', line 1116 def grammar_consistency=(val) super(val) end |
#grammatical_person=(val) ⇒ Object
1120 1121 1122 |
# File 'lib/phraseapp-ruby.rb', line 1120 def grammatical_person=(val) super(val) end |
#literal_translation=(val) ⇒ Object
1124 1125 1126 |
# File 'lib/phraseapp-ruby.rb', line 1124 def literal_translation=(val) super(val) end |
#overall_tone=(val) ⇒ Object
1128 1129 1130 |
# File 'lib/phraseapp-ruby.rb', line 1128 def overall_tone=(val) super(val) end |
#samples=(val) ⇒ Object
1132 1133 1134 |
# File 'lib/phraseapp-ruby.rb', line 1132 def samples=(val) super(val) end |
#target_audience=(val) ⇒ Object
1136 1137 1138 |
# File 'lib/phraseapp-ruby.rb', line 1136 def target_audience=(val) super(val) end |
#title=(val) ⇒ Object
1140 1141 1142 |
# File 'lib/phraseapp-ruby.rb', line 1140 def title=(val) super(val) end |
#validate ⇒ Object
1148 1149 1150 1151 1152 1153 |
# File 'lib/phraseapp-ruby.rb', line 1148 def validate if title == nil || title == "" raise PhraseApp::ParamsHelpers::ParamsValidationError.new("Required parameter \"title\" of \"StyleguideParams\" not set") end end |
#vocabulary_type=(val) ⇒ Object
1144 1145 1146 |
# File 'lib/phraseapp-ruby.rb', line 1144 def vocabulary_type=(val) super(val) end |