Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lingo-rep-raycast-extension extension #16512

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions extensions/lingo-rep-raycast-extension/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"root": true,
"extends": ["@raycast"]
}
13 changes: 13 additions & 0 deletions extensions/lingo-rep-raycast-extension/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules

# Raycast specific files
raycast-env.d.ts
.raycast-swift-build
.swiftpm
compiled_raycast_swift

# misc
.DS_Store
4 changes: 4 additions & 0 deletions extensions/lingo-rep-raycast-extension/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/lingo-rep-raycast-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# lingo-rep-raycast-extension Changelog

## [Initial Version] - 2024-05-05
12 changes: 12 additions & 0 deletions extensions/lingo-rep-raycast-extension/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# LingoRep

The best way to translate and learn new words in 100+ languages

## About

Quickly translate, save and repeat later unknowns words with LingoRep's Raycast Extension.
LingoRep allows to sync your translations between devices (Web, Desktop) and repeat them
usign best spaced repetition system (FSRS). Having trouble remembering a word - quickly discuss
it with our conversational AI bot, using your voice.

Read more on https://lingorep.com
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions extensions/lingo-rep-raycast-extension/copy-shared-packages.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

# Copy translate package
echo "Copying translate package..."
mkdir -p ./src/shared-packages/translate
rsync -av --delete ../../packages/translate/dist/ ./src/shared-packages/translate/

# Copy lang-options package
echo "Copying lang-options package..."
mkdir -p ./src/shared-packages/lang-options
rsync -av --delete ../../packages/lang-options/dist/ ./src/shared-packages/lang-options/


echo "Copying completed."
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading