@moraya/core 0.2.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +215 -41
- package/dist/ai/drivers/claude.d.ts +6 -0
- package/dist/ai/drivers/claude.js +229 -0
- package/dist/ai/drivers/claude.js.map +1 -0
- package/dist/ai/drivers/gemini.d.ts +6 -0
- package/dist/ai/drivers/gemini.js +212 -0
- package/dist/ai/drivers/gemini.js.map +1 -0
- package/dist/ai/drivers/index.d.ts +14 -0
- package/dist/ai/drivers/index.js +617 -0
- package/dist/ai/drivers/index.js.map +1 -0
- package/dist/ai/drivers/ollama.d.ts +8 -0
- package/dist/ai/drivers/ollama.js +158 -0
- package/dist/ai/drivers/ollama.js.map +1 -0
- package/dist/ai/drivers/openai.d.ts +7 -0
- package/dist/ai/drivers/openai.js +225 -0
- package/dist/ai/drivers/openai.js.map +1 -0
- package/dist/ai/drivers/tool-bridge.d.ts +37 -0
- package/dist/ai/drivers/tool-bridge.js +138 -0
- package/dist/ai/drivers/tool-bridge.js.map +1 -0
- package/dist/ai/drivers/types.d.ts +2 -0
- package/dist/ai/drivers/types.js +1 -0
- package/dist/ai/drivers/types.js.map +1 -0
- package/dist/ai/drivers/util.d.ts +13 -0
- package/dist/ai/drivers/util.js +40 -0
- package/dist/ai/drivers/util.js.map +1 -0
- package/dist/ai/image.d.ts +37 -0
- package/dist/ai/image.js +36 -0
- package/dist/ai/image.js.map +1 -0
- package/dist/ai/index.d.ts +37 -0
- package/dist/ai/index.js +826 -0
- package/dist/ai/index.js.map +1 -0
- package/dist/ai/types.d.ts +92 -0
- package/dist/ai/types.js +1 -0
- package/dist/ai/types.js.map +1 -0
- package/dist/ai/voice.d.ts +42 -0
- package/dist/ai/voice.js +34 -0
- package/dist/ai/voice.js.map +1 -0
- package/dist/chat-markdown/index.d.ts +82 -0
- package/dist/chat-markdown/index.js +165 -0
- package/dist/chat-markdown/index.js.map +1 -0
- package/dist/i18n/locales/ar.json +806 -732
- package/dist/i18n/locales/de.json +912 -838
- package/dist/i18n/locales/en.json +34 -5
- package/dist/i18n/locales/es.json +952 -876
- package/dist/i18n/locales/fr.json +1784 -1708
- package/dist/i18n/locales/hi.json +1808 -1734
- package/dist/i18n/locales/ja.json +839 -765
- package/dist/i18n/locales/ko.json +1783 -1709
- package/dist/i18n/locales/pt.json +894 -820
- package/dist/i18n/locales/ru.json +812 -738
- package/dist/i18n/locales/zh-CN.json +34 -5
- package/dist/i18n/locales/zh-Hant.json +1039 -965
- package/dist/types-CwM77g7u.d.ts +88 -0
- package/package.json +26 -2
|
@@ -392,7 +392,8 @@
|
|
|
392
392
|
"currency_usd": "USD ($)",
|
|
393
393
|
"currency_cny": "CNY (¥)",
|
|
394
394
|
"currency_eur": "EUR (€)",
|
|
395
|
-
"change_currency": "Change currency"
|
|
395
|
+
"change_currency": "Change currency",
|
|
396
|
+
"upgrade": "Upgrade"
|
|
396
397
|
},
|
|
397
398
|
"cloud_picker": {
|
|
398
399
|
"title_image": "Insert Cloud Image",
|
|
@@ -1741,6 +1742,8 @@
|
|
|
1741
1742
|
"thinking": "Thinking…",
|
|
1742
1743
|
"clear": "Clear conversation",
|
|
1743
1744
|
"clear_confirm": "Clear all messages?",
|
|
1745
|
+
"cleared": "Conversation cleared",
|
|
1746
|
+
"clear_undone": "Messages restored",
|
|
1744
1747
|
"stub_response": "Hi! I'm a placeholder response. The real AI provider will be wired up in v0.68.",
|
|
1745
1748
|
"not_configured_title": "AI is not configured yet",
|
|
1746
1749
|
"not_configured_text": "Add an API key or pick a local model in Settings → AI to start chatting.",
|
|
@@ -1803,6 +1806,8 @@
|
|
|
1803
1806
|
"preset_save_prompt": "Name this preset:",
|
|
1804
1807
|
"preset_delete_confirm": "Delete preset \"{name}\"?",
|
|
1805
1808
|
"preset_delete_aria": "Delete preset",
|
|
1809
|
+
"preset_deleted": "Deleted preset \"{name}\"",
|
|
1810
|
+
"preset_restored": "Preset restored",
|
|
1806
1811
|
"preset_picker_title": "Pick a preset",
|
|
1807
1812
|
"preset_picker_hint": "Switch tone for this conversation. For fine-tuning, use the ⚙ gear.",
|
|
1808
1813
|
"preset_picker_custom_note": "Currently using custom values — open ⚙ to view or save them as a preset.",
|
|
@@ -1942,7 +1947,8 @@
|
|
|
1942
1947
|
"voice_local_badge": "On-device",
|
|
1943
1948
|
"voice_permission_denied": "Microphone or speech permission denied. Enable it in Settings to use voice.",
|
|
1944
1949
|
"voice_start_failed": "Could not start voice input.",
|
|
1945
|
-
"voice_speak_failed": "Could not read this message aloud."
|
|
1950
|
+
"voice_speak_failed": "Could not read this message aloud.",
|
|
1951
|
+
"delete": "Delete"
|
|
1946
1952
|
},
|
|
1947
1953
|
"files": {
|
|
1948
1954
|
"title": "Knowledge Base",
|
|
@@ -1996,7 +2002,8 @@
|
|
|
1996
2002
|
"registered_at": "Registered {date}",
|
|
1997
2003
|
"last_seen": "Last seen {date}",
|
|
1998
2004
|
"error_register": "Could not register this device.",
|
|
1999
|
-
"error_list": "Could not load device list."
|
|
2005
|
+
"error_list": "Could not load device list.",
|
|
2006
|
+
"recent": "Recent notifications"
|
|
2000
2007
|
},
|
|
2001
2008
|
"offline": {
|
|
2002
2009
|
"cache_enabled": "Offline cache enabled",
|
|
@@ -2359,7 +2366,17 @@
|
|
|
2359
2366
|
"recovery_unlock_subtitle": "Enter your 12-word recovery code to regain access.",
|
|
2360
2367
|
"recovery_code_input": "Recovery Code (12 words, space-separated)",
|
|
2361
2368
|
"recovery_unlock_button": "Recover",
|
|
2362
|
-
"set_new_passphrase": "Set New Passphrase"
|
|
2369
|
+
"set_new_passphrase": "Set New Passphrase",
|
|
2370
|
+
"biometric_unlock_title": "Unlock Moraya",
|
|
2371
|
+
"biometric_unlock_subtitle": "Authenticate to access your data",
|
|
2372
|
+
"biometric_failed": "Authentication failed",
|
|
2373
|
+
"unlock_with_biometric": "Unlock with biometric",
|
|
2374
|
+
"unlock_with_face_id": "Unlock with Face ID",
|
|
2375
|
+
"unlock_with_touch_id": "Unlock with Touch ID",
|
|
2376
|
+
"unlock_with_fingerprint": "Unlock with fingerprint",
|
|
2377
|
+
"unlock_with_iris": "Unlock with iris scan",
|
|
2378
|
+
"unlock_with_passkey": "Unlock with passkey",
|
|
2379
|
+
"use_passphrase_fallback": "Use passphrase instead"
|
|
2363
2380
|
},
|
|
2364
2381
|
"seo": {
|
|
2365
2382
|
"title": "SEO Optimization",
|
|
@@ -3730,7 +3747,11 @@
|
|
|
3730
3747
|
"empty": "No recordings yet. Start capturing your voice!",
|
|
3731
3748
|
"reprocess": "Re-process",
|
|
3732
3749
|
"delete": "Delete"
|
|
3733
|
-
}
|
|
3750
|
+
},
|
|
3751
|
+
"hold_to_record": "Hold to record",
|
|
3752
|
+
"release_to_send": "Release to send",
|
|
3753
|
+
"cancel": "Slide to cancel",
|
|
3754
|
+
"permission_denied": "Microphone permission denied"
|
|
3734
3755
|
},
|
|
3735
3756
|
"welcome": {
|
|
3736
3757
|
"title": "Welcome to Moraya",
|
|
@@ -3910,5 +3931,13 @@
|
|
|
3910
3931
|
"allow_always": "Always Allow",
|
|
3911
3932
|
"deny": "Deny"
|
|
3912
3933
|
}
|
|
3934
|
+
},
|
|
3935
|
+
"ocr": {
|
|
3936
|
+
"capture_button": "Capture & extract text",
|
|
3937
|
+
"capture_short": "Capture",
|
|
3938
|
+
"recognizing": "Recognizing text…",
|
|
3939
|
+
"empty_result": "No text detected",
|
|
3940
|
+
"failed": "OCR failed",
|
|
3941
|
+
"engine_unavailable": "OCR not available on this device"
|
|
3913
3942
|
}
|
|
3914
3943
|
}
|