Skip to content

Instantly share code, notes, and snippets.

@vinayr
Created May 11, 2016 12:13
Show Gist options
  • Save vinayr/3280584a0fe6da89b158319a5c9b848b to your computer and use it in GitHub Desktop.
Save vinayr/3280584a0fe6da89b158319a5c9b848b to your computer and use it in GitHub Desktop.
mac automator service for google translate
Run AppleScript
on run {input, parameters}
set output to "https://translate.google.com/m/translate#ko/en/" & urldecode(input as string)
return output
end run
on urldecode(x)
set cmd to "'require \"cgi\"; puts CGI.escape(STDIN.read.chomp)'"
do shell script "echo " & quoted form of x & " | ruby -e " & cmd
end urldecode
Website Popup
iphone
iphone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment