#!/bin/sh

find . -name '*.cpp' 		|
	xargs grep -n TR	|	
	sed -n '/TR("[^"]*")/ s/^\(.*\):\([0-9]*\):.*TR("\(.*\)").*$/"\1","\2","\3"/p'
