Class: GetText::POEntry::Formatter
- Inherits:
-
Object
- Object
- GetText::POEntry::Formatter
- Includes:
- GetText::POFormat
- Defined in:
- lib/gettext/po_entry.rb
Constant Summary collapse
- DEFAULT_MAX_LINE_WIDTH =
78
Constants included from GetText::POFormat
GetText::POFormat::EXTRACTED_COMMENT_MARK, GetText::POFormat::FLAG_MARK, GetText::POFormat::PREVIOUS_COMMENT_MARK, GetText::POFormat::REFERENCE_COMMENT_MARK, GetText::POFormat::TRANSLATOR_COMMENT_MARK
Class Method Summary collapse
Instance Method Summary collapse
- #format ⇒ Object
-
#initialize(entry, options = {}) ⇒ Formatter
constructor
A new instance of Formatter.
Constructor Details
#initialize(entry, options = {}) ⇒ Formatter
Returns a new instance of Formatter.
215 216 217 218 |
# File 'lib/gettext/po_entry.rb', line 215 def initialize(entry, ={}) @entry = entry @options = fill_default_option_values() end |
Class Method Details
.escape(string) ⇒ Object
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 |
# File 'lib/gettext/po_entry.rb', line 186 def escape(string) return "" if string.nil? string.gsub(/([\\"\t\n])/) do special_character = $1 case special_character when "\t" "\\t" when "\n" "\\n" else "\\#{special_character}" end end end |
Instance Method Details
#format ⇒ Object
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
# File 'lib/gettext/po_entry.rb', line 220 def format # extracted comments if @entry.msgid == :last return format_obsolete_comment(@entry.comment) end str = "" str << format_translator_comment str << format_extracted_comment if @options[:include_reference_comment] str << format_reference_comment end str << format_flag_comment str << format_previous_comment # msgctxt, msgid, msgstr if @entry.msgctxt? if @entry.msgctxt.nil? = "This POEntry is a kind of msgctxt " + "but the msgctxt property is nil. " + "msgid: #{@entry.msgid}" raise(NoMsgctxtError, ) end str << "msgctxt " << (@entry.msgctxt) end str << "msgid " << (@entry.msgid) if @entry.plural? if @entry.msgid_plural.nil? = "This POEntry is a kind of plural " + "but the msgid_plural property is nil. " + "msgid: #{@entry.msgid}" raise(NoMsgidPluralError, ) end str << "msgid_plural " << (@entry.msgid_plural) if @entry.msgstr.nil? str << "msgstr[0] \"\"\n" str << "msgstr[1] \"\"\n" else msgstrs = @entry.msgstr.split("\000", -1) msgstrs.each_with_index do |msgstr, index| str << "msgstr[#{index}] " << (msgstr) end end else str << "msgstr " str << (@entry.msgstr) end str end |