Created
May 11, 2016 12:13
-
-
Save vinayr/3280584a0fe6da89b158319a5c9b848b to your computer and use it in GitHub Desktop.
mac automator service for google translate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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