Very good, I added a check for corrected ", so I obtain only the real strings: 
Code:
code: {
view layout [
btn "some text"
btn "some more text"
]
}
strings: copy []
test: 1
parse code [
any [
thru {"} (test: test + 1) copy a-string
to {"} (if ((remainder test 2 ) = 0) [append strings a-string])
]
to end]
parse code [any [thru "{" copy a-string to "}" (append strings a-string) ] to end]
probe strings
alert "Done!"
Now may next step is: how to use google translator with these strings?
I can read the page of the translation simply with my browser, example: I want tor translate "Ciao mondo"
Code:
http://translate.google.com/?hl=it#auto|en|Ciao mondo
but I can't read anywhere "Hello world" in source code of HTML, any suggestion?
Thank you and best regards
Max