Class: Translatomatic::ResourceFile::PO
- Defined in:
- lib/translatomatic/resource_file/po.rb
Overview
Property list resource file
Defined Under Namespace
Classes: PoProperty
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
-
.extensions ⇒ Array<String>
File extensions supported by this resource file.
-
.is_key_value? ⇒ boolean
True if the file format consists of keys and values.
Instance Method Summary collapse
-
#save(target = path, options = {}) ⇒ void
Save the resource file.
-
#set(key, value) ⇒ String
Set a property.
Methods inherited from Base
#create_variable, enabled?, #format, #get, #initialize, #locale_path, #sentences, supports_variable_interpolation?, #to_s, #type, #variable_regex
Constructor Details
This class inherits a constructor from Translatomatic::ResourceFile::Base
Class Method Details
.extensions ⇒ Array<String>
Returns File extensions supported by this resource file.
9 10 11 |
# File 'lib/translatomatic/resource_file/po.rb', line 9 def self.extensions %w{po pot} end |
.is_key_value? ⇒ boolean
Returns True if the file format consists of keys and values.
14 15 16 |
# File 'lib/translatomatic/resource_file/po.rb', line 14 def self.is_key_value? true end |
Instance Method Details
#save(target = path, options = {}) ⇒ void
This method returns an undefined value.
Save the resource file.
44 45 46 47 48 49 |
# File 'lib/translatomatic/resource_file/po.rb', line 44 def save(target = path, = {}) if @po add_created_by unless [:no_created_by] target.write(@po.to_s) end end |
#set(key, value) ⇒ String
Set a property
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/translatomatic/resource_file/po.rb', line 19 def set(key, value) super(key, value) unless @pomap.include?(key) # new key, create po entry po << { msgid: key, msgstr: value } entry = po.entries[-1] add_entry(entry, :msgid, 0) else po_property = @pomap[key] entry = po_property.entry if entry.plural? msgstr = entry.msgstr || [] msgstr[po_property.index] = value entry.msgstr = msgstr else entry.msgstr = value end end end |