Talk:Strings: Difference between revisions

From Official Kodi Wiki
Jump to navigation Jump to search
(Created page with "==Teh magic== <code>sed -n '/msgctxt/{N;p}' strings.po | sed -e 's/msgctxt//' -e 's/msgid//' -e 's/[#"]//g' | paste - - | while read ID TEXT; do echo "<section begin=\"string...")
(No difference)

Revision as of 07:27, 26 May 2015

Teh magic

sed -n '/msgctxt/{N;p}' strings.po | sed -e 's/msgctxt//' -e 's/msgid//' -e 's/[#"]//g' | paste - - | while read ID TEXT; do echo ""$TEXT""; done

Putting this here so I don't forget. -- Ned Scott (talk) 03:27, 26 May 2015 (EDT)