Remove Apple Twine headers
This commit is contained in:
parent
9c6143efe5
commit
4cfda06f87
4 changed files with 0 additions and 17 deletions
|
@ -30,12 +30,6 @@ If we map the _input_ for each method to the example file, it looks like this
|
|||
As stated at the beginning, the output produced by a formatter depends on the formatter. The output of the Apple formatter would for example be
|
||||
|
||||
```
|
||||
/**
|
||||
* Apple Strings File
|
||||
* Generated by Twine
|
||||
* Language: en
|
||||
*/
|
||||
|
||||
/********** General **********/
|
||||
|
||||
"yes" = "Yes";
|
||||
|
|
|
@ -65,10 +65,6 @@ module Twine
|
|||
end
|
||||
end
|
||||
|
||||
def format_header(lang)
|
||||
"/**\n * Apple Strings File\n * Generated by Twine\n * Language: #{lang}\n */"
|
||||
end
|
||||
|
||||
def format_section_header(section)
|
||||
"/********** #{section.name} **********/\n"
|
||||
end
|
||||
|
|
|
@ -29,7 +29,6 @@ module Twine
|
|||
def format_header(lang)
|
||||
header = "<\?xml version=\"1.0\" encoding=\"UTF-8\"\?>\n"
|
||||
header += "<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n"
|
||||
header += "<!--\n * Apple Stringsdict File\n * Generated by Twine\n * Language: #{lang} -->\n"
|
||||
header += "<plist version=\"1.0\">\n<dict>"
|
||||
end
|
||||
|
||||
|
|
6
test/fixtures/formatter_apple.strings
vendored
6
test/fixtures/formatter_apple.strings
vendored
|
@ -1,9 +1,3 @@
|
|||
/**
|
||||
* Apple Strings File
|
||||
* Generated by Twine
|
||||
* Language: en
|
||||
*/
|
||||
|
||||
/********** Section 1 **********/
|
||||
|
||||
/* comment key1 */
|
||||
|
|
Reference in a new issue