Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 990 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 990 Bytes

fast-translator

fast translator is licensed under the MIT License (MIT).

fast translator will work with Yandex.Translator API Fast translator

AppleScript support

You can call 'translate "some text"' from your AppleScript The app will activate and show you translation of "some text"

Now it translates from English to Russian but I will add auto-detection of a source text later.

Alfred integration

Alfred support

I added two extensions for Alfred. So you can just install them or create yourself.

create a new AppleScript in Alfred preferences and add this:

  
on alfred_script(q)
  tell application "fast translator"
		activate
		do direct parameter command q
	end tell
end alfred_script