Compare commits

..

No commits in common. "main" and "issue_438_autofeat_apimodel" have entirely different histories.

176 changed files with 2990 additions and 26699 deletions

View file

@ -8,7 +8,7 @@ body:
If you have a feature or enhancement request, please use the [feature request][fr] form.
[fr]: https://github.com/micz/ThunderAI/issues/new?assignees=&labels=&projects=&template=feature_request.yml&title=
[fr]: https://github.com/micz/ThunderAI/issues/new?assignees=&labels=&projects=&template=feature_request.md&title=
- type: textarea
validations:
required: true
@ -36,7 +36,7 @@ body:
attributes:
label: Which version of Thunderbird are you using?
description: >
Thunderbird version like 140.0 or 147.0.1.
Thunderbird version like 115.14.0 or 128.1.
- type: input
id: version
validations:
@ -56,7 +56,7 @@ body:
- ChatGPT Web Interface
- OpenAI ChatGPT API
- Google Gemini API
- Claude API
- Anthropic API
- Ollama API
- OpenAI Compatible API
- type: markdown

View file

@ -1,80 +0,0 @@
const fs = require('fs');
const https = require('https');
const path = require('path');
// --- Utility: fetch URL following redirects ---
function fetchUrl(url) {
return new Promise((resolve, reject) => {
https.get(url, { headers: { 'User-Agent': 'ThunderAI-vendor-updater' } }, (res) => {
if (res.statusCode === 301 || res.statusCode === 302) {
return fetchUrl(res.headers.location).then(resolve).catch(reject);
}
const chunks = [];
res.on('data', chunk => chunks.push(chunk));
res.on('end', () => resolve({ status: res.statusCode, body: Buffer.concat(chunks) }));
}).on('error', reject);
});
}
// --- Read VENDORS.md ---
const vendorsPath = 'VENDORS.md';
const content = fs.readFileSync(vendorsPath, 'utf8');
// --- Find all entries: file + source ---
const entryRegex = /file:\s*(.+?)\r?\nsource:\s*(https?:\/\/.+)/g;
const entries = [];
let match;
while ((match = entryRegex.exec(content)) !== null) {
entries.push({
file: match[1].trim(),
source: match[2].trim(),
});
}
// --- Filter tom-select entries only ---
const filteredEntries = entries.filter(e => e.file.toLowerCase().includes('tom-select'));
if (filteredEntries.length === 0) {
console.log('No entries found in VENDORS.md');
process.exit(0);
}
// --- Main ---
(async () => {
let hasErrors = false;
for (const entry of filteredEntries) {
const filePath = entry.file.replace(/\\/g, '/');
console.log(`\nProcessing: ${filePath}`);
console.log(` Source: ${entry.source}`);
// Create directory if it doesn't exist
const dir = path.dirname(filePath);
if (!fs.existsSync(dir)) {
fs.mkdirSync(dir, { recursive: true });
console.log(` → Directory created: ${dir}`);
}
// Download file
try {
const res = await fetchUrl(entry.source);
if (res.status === 200) {
fs.writeFileSync(filePath, res.body);
console.log(` ✓ File updated (${res.body.length} bytes)`);
} else {
console.error(` ✗ Download failed: HTTP ${res.status}`);
hasErrors = true;
}
} catch (err) {
console.error(` ✗ Error: ${err.message}`);
hasErrors = true;
}
}
if (hasErrors) {
console.error('\nSome files were not updated.');
process.exit(1);
} else {
console.log('\nAll files updated successfully.');
}
})();

View file

@ -1,117 +0,0 @@
name: Mark released issues on close
on:
issues:
types: [closed]
permissions:
contents: read
issues: write
jobs:
mark-released:
# Run only if closed as completed AND has at least one "status:" label
if: ${{ github.event.issue.state_reason == 'completed' && contains(toJSON(github.event.issue.labels), 'status:') }}
runs-on: ubuntu-latest
steps:
- name: Set "released" label when closed completed and was ready for release
uses: actions/github-script@v7
with:
script: |
// Helpers
const owner = context.repo.owner;
const repo = context.repo.repo;
const issue = context.payload.issue;
if (!issue) {
core.info('No issue payload found, skipping.');
return;
}
// Only proceed if closed as "completed" (not "not_planned")
const isCompleted = issue.state_reason === 'completed';
if (!isCompleted) {
core.info('Issue state_reason is not "completed"; skipping.');
return;
}
const getName = (l) => typeof l === 'string' ? l : l.name;
const labels = (issue.labels || []).map(getName);
// Status detection (robust to case/spacing)
const isStatusLabel = (name) => /^status:\s*/i.test(String(name || ''));
const hasAnyStatus = labels.some(isStatusLabel);
if (!hasAnyStatus) {
core.info('Issue has no "status:*" label; skipping.');
return;
}
const READY_REGEX = /^status:\s*ready\s*for\s*release$/i;
const hasReady = labels.some((n) => READY_REGEX.test(String(n || '')));
if (!hasReady) {
core.info('Issue is not "status: ready for release"; nothing to do.');
return;
}
const releasedLabel = 'status: released';
// Ensure "released" label exists
try {
await github.rest.issues.getLabel({ owner, repo, name: releasedLabel });
} catch (e) {
if (e.status === 404) {
core.info(`Label "${releasedLabel}" not found. Creating it.`);
await github.rest.issues.createLabel({
owner,
repo,
name: releasedLabel,
color: '184738', // deep green
description: 'Feature released.'
});
} else {
throw e;
}
}
// Remove all status:* labels, add "status: released"
const filtered = labels.filter((name) => !isStatusLabel(name));
const newLabels = [...new Set([...filtered, releasedLabel])];
await github.rest.issues.update({
owner,
repo,
issue_number: issue.number,
labels: newLabels
});
core.info(`Issue #${issue.number} relabeled as "${releasedLabel}".`);
// === NEW: add release comment with milestone if present ===
const milestone = issue.milestone;
if (!milestone || !milestone.title) {
core.info('Issue has no milestone; no release comment added.');
return;
}
const commentBody = `Released in version ${milestone.title}.`;
// Avoid duplicate comment if the action reruns
const existingComments = await github.paginate(
github.rest.issues.listComments,
{ owner, repo, issue_number: issue.number, per_page: 100 }
);
const alreadyCommented = existingComments.some(c =>
typeof c.body === 'string' && c.body.trim() === commentBody
);
if (alreadyCommented) {
core.info('Release comment already present; skipping comment creation.');
} else {
await github.rest.issues.createComment({
owner,
repo,
issue_number: issue.number,
body: commentBody
});
core.info('Release comment added.');
}

View file

@ -1,75 +0,0 @@
name: Issues Validate Integration Field
on:
issues:
types: [opened, edited]
permissions:
issues: write
jobs:
check-integration:
runs-on: ubuntu-latest
steps:
- name: Validate dropdown selection (only for bug report form)
uses: actions/github-script@v7
with:
script: |
const issue = context.payload.issue;
const bodyText = issue.body || "";
// ---- Guard: only act if this looks like a Bug Report form ----
if (!bodyText.includes("### The problem")) {
core.info("Skipped: This issue does not contain '### The problem', so it is not a Bug Report.");
return;
}
core.info("Detected a Bug Report issue. Proceeding with validation...");
// Extract selection under "Which integration are you using?"
const header = "### Which integration are you using?";
const nextHeaderRegex = /\n### /;
let selection = "";
const startIdx = bodyText.indexOf(header);
if (startIdx !== -1) {
const afterHeader = bodyText.slice(startIdx + header.length).replace(/^\r?\n+/, "");
const nextHeaderIdx = afterHeader.search(nextHeaderRegex);
selection = (nextHeaderIdx === -1 ? afterHeader : afterHeader.slice(0, nextHeaderIdx)).trim();
}
core.info(`Integration field extracted: "${selection}"`);
const isInvalid = !selection || selection.startsWith("-- Select an option");
if (isInvalid) {
core.info("Integration field is invalid or not selected.");
} else {
core.info("Integration field is valid. Nothing to do.");
}
const owner = context.repo.owner;
const repo = context.repo.repo;
const issue_number = issue.number;
// Avoid duplicate comments
const marker = "please specify **Which integration are you using?**";
const { data: comments } = await github.rest.issues.listComments({ owner, repo, issue_number });
const alreadyCommented = comments.some(c => c.body && c.body.includes(marker));
if (isInvalid) {
if (!alreadyCommented) {
core.info("No existing reminder found. Posting a new comment...");
await github.rest.issues.createComment({
owner, repo, issue_number,
body: [
`👋 Hello @${issue.user.login}!`,
`To complete your bug report, please specify which integration you are using.`,
"",
"Right now the field `**Which integration are you using?**` is set to `-- Select an option --`.",
"",
"Click **Edit** at the top right of the issue, choose a valid option from the dropdown, and save.",
].join("\n")
});
} else {
core.info("Reminder comment already exists. Skipping new comment.");
}
}

View file

@ -1,103 +0,0 @@
name: pre-release comment issues
on:
release:
types: [published]
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false
permissions:
contents: read
issues: write
jobs:
comment-milestone-issues:
# allow manual run for testing; in production, only prerelease
if: ${{ github.event.release.prerelease == true }}
runs-on: ubuntu-latest
steps:
- name: Debug context (no checkout)
run: |
echo "Event: ${{ github.event_name }}"
echo "Default branch: ${{ github.event.repository.default_branch }}"
echo "Release tag: ${{ github.event.release.tag_name || 'N/A' }}"
echo "This workflow file lives on MAIN and is executed as-is (no checkout)."
- name: Add comment to issues of matching milestone (filtered by labels)
uses: actions/github-script@v7
with:
script: |
// core, github, context are already available in github-script
await (async () => {
const parsePrereleaseTag = (tag) => {
const m = /^v?(\d+\.\d+\.\d+)pre(\d+)$/.exec(tag ?? "");
return m ? { milestoneTitle: m[1], preNumber: Number(m[2]) } : null;
};
const { owner, repo } = context.repo;
// If this is a manual run, exit with a clear message
if (context.eventName !== 'release') {
core.notice("Manual run: no release payload, nothing to do.");
return;
}
const tagName = context.payload.release?.tag_name;
if (!tagName) { core.notice("No tag_name found on release event."); return; }
const parsed = parsePrereleaseTag(tagName);
if (!parsed) { core.notice(`Tag '${tagName}' does not match vX.Y.ZpreN. Skipping.`); return; }
const milestoneTitle = parsed.milestoneTitle; // es. "3.7.0"
const prereleaseTagDisplay = tagName.startsWith("v") ? tagName : `v${tagName}`;
const commentBody = `This feature is available for testing in the pre-release version [${prereleaseTagDisplay}](https://github.com/micz/ThunderAI/releases).`;
core.info(`(MAIN) Looking for milestone '${milestoneTitle}' in ${owner}/${repo}`);
// Find milestone (open or closed)
const milestones = await github.paginate(
github.rest.issues.listMilestones,
{ owner, repo, state: "all", per_page: 100 }
);
const milestone = milestones.find(m => m.title === milestoneTitle);
if (!milestone) { core.warning(`Milestone '${milestoneTitle}' not found.`); return; }
// All issues in the milestone
const issues = await github.paginate(
github.rest.issues.listForRepo,
{ owner, repo, milestone: milestone.number, state: "all", per_page: 100 }
);
// Only issues (no PRs) with the requested labels
const allowed = new Set(["status: in review", "status: ready for release"]);
const targets = issues.filter(i =>
!i.pull_request &&
Array.isArray(i.labels) &&
i.labels.some(l => allowed.has(l.name))
);
core.info(`Candidate issues: ${targets.length}`);
let commented = 0;
for (const issue of targets) {
const comments = await github.paginate(
github.rest.issues.listComments,
{ owner, repo, issue_number: issue.number, per_page: 100 }
);
const exists = comments.some(c => (c.body || "").trim() === commentBody);
if (exists) {
core.info(`#${issue.number}: comment already present, skip.`);
continue;
}
await github.rest.issues.createComment({
owner, repo, issue_number: issue.number, body: commentBody
});
commented++;
core.info(`#${issue.number}: comment added.`);
}
core.info(`Done. Added comment to ${commented} issue(s).`);
})();

View file

@ -1,61 +0,0 @@
name: Check Tom-Select Latest Release
on:
schedule:
- cron: '0 19 * * *' # Check every day at 19:00
workflow_dispatch: # Allows manual triggering for testing purposes
permissions:
contents: read
issues: write
jobs:
check-and-notify:
runs-on: ubuntu-latest
steps:
- name: Get latest release from external repo
id: get_release
run: |
REPO_TARGET="orchidjs/tom-select"
LATEST_TAG=$(curl -s https://api.github.com/repos/$REPO_TARGET/releases/latest | jq -r .tag_name)
if [ "$LATEST_TAG" == "null" ] || [ -z "$LATEST_TAG" ]; then
echo "Error: unable to fetch tag or no release found."
exit 1
fi
echo "tag=$LATEST_TAG" >> $GITHUB_OUTPUT
echo "target=$REPO_TARGET" >> $GITHUB_OUTPUT
- name: Check if Issue already exists and create it
uses: actions/github-script@v7
with:
script: |
const latestTag = "${{ steps.get_release.outputs.tag }}";
const targetRepo = "${{ steps.get_release.outputs.target }}";
const { owner, repo } = context.repo;
const issueTitle = `Update Tom Select to version ${latestTag}`;
// Search through issues (both open and closed for safety)
const response = await github.rest.search.issuesAndPullRequests({
q: `repo:${owner}/${repo} is:issue "${issueTitle}"`,
});
if (response.data.total_count > 0) {
core.info(`The issue for version ${latestTag} already exists. No action taken.`);
} else {
await github.rest.issues.create({
owner,
repo,
title: issueTitle,
labels: ['enhancement'],
body: `Update Tom Select to version **${latestTag}**.
https://cdn.jsdelivr.net/npm/tom-select@${latestTag}/dist/js/tom-select.base.js
https://cdn.jsdelivr.net/npm/tom-select@${latestTag}/dist/css/tom-select.default.min.css
Change the VENDORS.md file to trigger the library update.`
});
core.info(`New issue created for version ${latestTag}.`);
}

View file

@ -1,81 +0,0 @@
name: Update Tom Select Files
on:
workflow_dispatch:
push:
paths:
- 'VENDORS.md'
jobs:
tom-select-update:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Check and update vendor files
run: node .github/scripts/tom-select-update.js
- name: Commit and push to PR branch
id: commit
run: |
BASE_BRANCH="${{ github.ref_name }}"
PR_BRANCH="tom-select-update-${BASE_BRANCH}"
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
# If there are no changes, exit without doing anything
if git diff --quiet; then
echo "No changes to vendor files."
echo "has_changes=false" >> $GITHUB_OUTPUT
exit 0
fi
# Crea o aggiorna la branch PR
git checkout -B "$PR_BRANCH"
git add -A
git commit -m "Update Tom Select files from VENDORS.md"
git push origin "$PR_BRANCH" --force
echo "has_changes=true" >> $GITHUB_OUTPUT
echo "pr_branch=$PR_BRANCH" >> $GITHUB_OUTPUT
echo "base_branch=$BASE_BRANCH" >> $GITHUB_OUTPUT
- name: Create Pull Request via API
if: steps.commit.outputs.has_changes == 'true'
run: |
# Try to create the PR; if it already exists (422) ignore the error
HTTP_CODE=$(curl -s -o /tmp/pr_response.json -w "%{http_code}" \
-X POST \
-H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github+json" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/${{ github.repository }}/pulls \
-d "{
\"title\": \"Update Tom Select files from VENDORS.md\",
\"body\": \"Tom Select files updated automatically after a change to \`VENDORS.md\`.\n\nPlease review the downloaded files before merging.\",
\"head\": \"${{ steps.commit.outputs.pr_branch }}\",
\"base\": \"${{ steps.commit.outputs.base_branch }}\"
}")
cat /tmp/pr_response.json
if [ "$HTTP_CODE" = "201" ]; then
echo "PR created successfully."
elif [ "$HTTP_CODE" = "422" ]; then
echo "PR already exists, updated with the new commit."
else
echo "Error creating PR: HTTP $HTTP_CODE"
exit 1
fi

30
.gitignore vendored
View file

@ -1,30 +0,0 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
node_modules
.DS_Store
dist
dist-ssr
coverage
*.local
# Editor directories and files
.vscode
.vscode/*
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.tsbuildinfo
dist
.claude

View file

@ -3,165 +3,17 @@
<h2>Version 4.1.0 - 13/05/2026</h2>
<h2>Version 3.7.0 - ??/??/2025</h2>
<ul>
<li>Antispam information are now permanently saved for each message [<a href="https://github.com/micz/ThunderAI/issues/675">#675</a>].</li>
<li><i>[All APIs]</i> A summary has been added above the mail content [<a href="https://github.com/micz/ThunderAI/issues/580">#580</a>].</li>
<li><i>[All APIs]</i> Added inline auto translation for emails [<a href="https://github.com/micz/ThunderAI/issues/247">#247</a>].</li>
<li>Custom menus configuration added. Now it's possibile to define which prompts show in the ThunderAI menu, which ones in the context menu and in which order [<a href="https://github.com/micz/ThunderAI/issues/49">#49</a>, <a href="https://github.com/micz/ThunderAI/issues/184">#184</a>, <a href="https://github.com/micz/ThunderAI/issues/680">#680</a>].</li>
<li>Now the popup menu closes immediatly and the working indicator is in the button icon [<a href="https://github.com/micz/ThunderAI/issues/247">#677</a>].</li>
<li><i>[All APIs]</i> Error messages added also for background operations when the API has not been configured correctly [<a href="https://github.com/micz/ThunderAI/issues/766">#766</a>].</li>
<li><i>[Ollama API]</i> Added <i>format: json</i> option [<a href="https://github.com/micz/ThunderAI/issues/703">#703</a>].</li>
<li>Fix: The "Important Information" section in the options page now updates correctly when choosing an integration [<a href="https://github.com/micz/ThunderAI/issues/730">#730</a>].</li>
<li>In the options page now is visible if a special prompt is using a specific API integration [<a href="https://github.com/micz/ThunderAI/issues/676">#676</a>].</li>
<li>Added an antispam skip list to ensure messages from designated addresses are not forwarded to the AI [<a href="https://github.com/micz/ThunderAI/issues/743">#743</a>].</li>
<li>Fix: Correctly setting the end date for a new calendar event [<a href="https://github.com/micz/ThunderAI/issues/750">#750</a>].</li>
<li>Now it's possibile to use different date and time formats in the AI output when creating a calendar event [<a href="https://github.com/micz/ThunderAI/issues/737">#737</a>].</li>
<li>Added the <i>{%mail_full_headers%}</i> placeholder to retrieve all the email headers at once [<a href="https://github.com/micz/ThunderAI/issues/713">#713</a>].</li>
<li><i>[All APIs]</i> In the API webchat the status messages have different colors [<a href="https://github.com/micz/ThunderAI/issues/3">#3</a>].</li>
<li>Account exclusion lists for add tags and antispam are enforced only for automatic analysis of incoming emails and not for the context menu action that is always executed [<a href="https://github.com/micz/ThunderAI/issues/749">#749</a>].</li>
</ul>
<h2>Version 4.0.7 - 17/04/2026</h2>
<ul>
<li>Fix: Correctly parsing the body of HTML base64 encoded mails [<a href="https://github.com/micz/ThunderAI/issues/757">#757</a>].</li>
</ul>
<h2>Version 4.0.6 - 01/04/2026</h2>
<ul>
<li>Fix: Now it's possibile to create a tag also with accented characters in the label [<a href="https://github.com/micz/ThunderAI/issues/738">#738</a>].</li>
</ul>
<h2>Version 4.0.5 - 27/03/2026</h2>
<ul>
<li>Fix: HTML part of the mail body used in prompt is displayed as HTML code and it is not rendered. This a display fix, there is no change on how the prompt is sent to the AI [<a href="https://github.com/micz/ThunderAI/issues/711">#711</a>].</li>
<li>Fix: HTML elements added by ThunderAI (like the antispam banner) are now not present in HTML or text data placeholders [<a href="https://github.com/micz/ThunderAI/issues/710">#710</a>].</li>
<li><i>[All APIs]</i> The API webchat window now has a dynamic title [<a href="https://github.com/micz/ThunderAI/issues/696">#696</a>]</li>
</ul>
<h2>Version 4.0.4 - 26/03/2026</h2>
<ul>
<li>Fix: Correctly showing the selected model in the special prompt pages.</li>
</ul>
<h2>Version 4.0.3 - 20/03/2026</h2>
<ul>
<li>Fixed a bug in creating new tags [<a href="https://github.com/micz/ThunderAI/issues/698">#698</a>].</li>
</ul>
<h2>Version 4.0.2 - 11/03/2026</h2>
<ul>
<li>Now it's possible to automatically save the AI window position [<a href="https://github.com/micz/ThunderAI/issues/685">#685</a>].</li>
<li><i>[OpenAI API]</i> Fix: Correctly showing failed response errors during streaming [<a href="https://github.com/micz/ThunderAI/issues/690">#690</a>].</li>
<li>Fix: Correctly adding tags with non-ASCII characters [<a href="https://github.com/micz/ThunderAI/issues/689">#689</a>].</li>
<li>Improved the spacing between lines when displaying the AI response in the API webchat [<a href="https://github.com/micz/ThunderAI/issues/686">#686</a>].</li>
<li>Some minor improvments.</li>
</ul>
<h2>Version 4.0.1 - 27/02/2026</h2>
<ul>
<li>Fix: Correctly handling additional text without a placeholder [<a href="https://github.com/micz/ThunderAI/issues/681">#681</a>].</li>
</ul>
<h2>Version 4.0.0 - 24/02/2026</h2>
<ul>
<li>ThunderAI is now compatible only with Thunderbird 140 and later [<a href="https://github.com/micz/ThunderAI/issues/616">#616</a>].</li>
<li><i>[All APIs]</i> It's now possibile to define a specific API integration for calendar and task recognition [<a href="https://github.com/micz/ThunderAI/issues/498">#498</a>].</li>
<li>Added a new model selector with a search functionality to dynamically filter the list [<a href="https://github.com/micz/ThunderAI/issues/603">#603</a>].</li>
<li><i>[All APIs]</i> Added a special prompt to summarize one or more emails, using a context menu command [<a href="https://github.com/micz/ThunderAI/issues/615">#615</a>]. Thanks to <a href="https://github.com/gdkrmr">Guido Kraemer</a> for his great work on this feature.</li>
<li><i>[All APIs]</i> "Analyze for spam" and "Add tags" context menu items are always shown when the corresponding feature is enabled [<a href="https://github.com/micz/ThunderAI/issues/609">#609</a>].</li>
<li><i>[OpenAI Comp API][Ollama API]</i> Asking for the single host for permission to avoid CORS errors, instead of <i>all_urls</i>, as requested by the Thunderbird Review Team [<a href="https://github.com/micz/ThunderAI/issues/524">#524</a>].</li>
<li>Fix: Using also the mail folder owner to search for the right identity to use when composing a reply [<a href="https://github.com/micz/ThunderAI/issues/627">#627</a>].</li>
<li>Context menu items are always ordered alfabetically [<a href="https://github.com/micz/ThunderAI/issues/630">#630</a>].</li>
<li>The prompt export now includes an option to incorporate specific API settings, when present [<a href="https://github.com/micz/ThunderAI/issues/624">#624</a>].</li>
<li>Added the <i>{%mail_text_body_or_selected%}</i> placeholder to retrieve the selected text or the full text body of the email if no selection is present [<a href="https://github.com/micz/ThunderAI/issues/641">#641</a>].</li>
<li>Added the <i>{%mail_html_body_or_selected%}</i> placeholder to retrieve the selected HTML or the full HTML body of the email if no selection is present [<a href="https://github.com/micz/ThunderAI/issues/641">#641</a>].</li>
<li><i>[All APIs]</i> Added an option to get a calendar event without selecting some text, but using the full text body of the email [<a href="https://github.com/micz/ThunderAI/issues/518">#518</a>].</li>
<li><i>[All APIs]</i> Added a new menu item to create a calendar event from the text saved in the clipboard [<a href="https://github.com/micz/ThunderAI/issues/362">#362</a>].</li>
<li>Added a button to copy a prompt in the Custom Prompts page [<a href="https://github.com/micz/ThunderAI/issues/598">#598</a>].</li>
<li><i>[All APIs]</i> Showing the spam filter info at the top of the message. The data is saved only for the session in which the message has been checked for spam [<a href="https://github.com/micz/ThunderAI/issues/506">#506</a>, <a href="https://github.com/micz/ThunderAI/issues/658">#658</a>].</li>
<li>Fix: Now it's possibile to use multiple <i>additional_text</i> placeholders in a single prompt, also using custom placeholders [<a href="https://github.com/micz/ThunderAI/issues/554">#554</a>].</li>
<li>When using the <i>additional_text</i> placeholder is now possibile to specify an ID that will be shown in the form asking for the text [<a href="https://github.com/micz/ThunderAI/issues/525">#525</a>].</li>
<li><i>[ChatGPT Web]</i> Added an option to define a custom time to wait for the page load. Sometimes, on slow PCs, the ChatGPT page loads slowly and ThunderAI inject its content too early. With this option you can adjust the waiting time [<a href="https://github.com/micz/ThunderAI/issues/634">#634</a>].</li>
</ul>
<h2>Version 3.8.5 - 22/02/2026</h2>
<ul>
<li>Fix: Correctly showing email addresses when using mail headers in data placeholders [<a href="https://github.com/micz/ThunderAI/issues/672">#672</a>].</li>
</ul>
<h2>Version 3.8.4 - 10/02/2026</h2>
<ul>
<li><i>[ChatGPT Web]</i> Fix: Correctly importing the selected text into the compose windows also when ChatGPT shows the advanced mail editor in the response [<a href="https://github.com/micz/ThunderAI/issues/646">#646</a>].</li>
</ul>
<h2>Version 3.8.3 - 22/01/2026</h2>
<ul>
<li>Fix: Correctly saving the API settings in new custom prompts [<a href="https://github.com/micz/ThunderAI/issues/623">#623</a>].</li>
<li>Japanese (ja) translation added, thanks to <a href="https://hosted.weblate.org/user/watya1/">Taichi Ito</a>.</li>
</ul>
<h2>Version 3.8.2 - 20/01/2026</h2>
<ul>
<li>Fix: Correctly saving the enabled status in custom prompts [<a href="https://github.com/micz/ThunderAI/issues/621">#621</a>].</li>
</ul>
<h2>Version 3.8.1 - 20/01/2026</h2>
<ul>
<li><i>[OpenAI API]</i> Fix: Correctly sending the prompt after opening the chat window [<a href="https://github.com/micz/ThunderAI/issues/620">#620</a>].</li>
</ul>
<h2>Version 3.8.0 - 16/01/2026</h2>
<ul>
<li><i>[All APIs]</i> Now it is possible to define an API and its settings for any custom prompt. This allows anyone to use different AI providers for different prompts [<a href="https://github.com/micz/ThunderAI/pull/102">#102</a>].</li>
<li><i>[All APIs]</i> When using special prompts (like automatically adding tags or the spam filter) with a specific API integration, all the settings for that integration can be specific. In this way you can use different api keys for the same integration, or different system prompt or temperature [<a href="https://github.com/micz/ThunderAI/pull/590">#590</a>].</li>
<li><i>[All APIs]</i> Added the temperature parameter [<a href="https://github.com/micz/ThunderAI/issues/561">#561</a>].</li>
<li><i>[OpenAI API]</i> Model filtering improved when choosing a model in the options page.</li>
<li><i>[OpenAI API]</i> Now using the new Responses API [<a href="https://github.com/micz/ThunderAI/issues/407">#407</a>].</li>
<li>It is now possible to define a custom placeholder with dynamic data to retrieve any header present in the current email [<a href="https://github.com/micz/ThunderAI/issues/527">#527</a>].</li>
<li><i>[All APIs]</i> The configuration information reported in the webchat API has been improved for all integrations.</li>
<li>Spanish (es) translation added, thanks to <a href="https://hosted.weblate.org/user/gerardo.sobarzo/">Gerardo Sobarzo</a>, <a href="https://hosted.weblate.org/user/arendon/">Andrés Rendón Hernández</a>, <a href="https://hosted.weblate.org/user/ErickLimonG/">Erick Limon</a>.</li>
<li>Swedish (sv) translation added, thanks to <a href="https://hosted.weblate.org/user/Andy_tb/">Andreas Pettersson</a>.</li>
<li>Various fixes.</li>
</ul>
<h2>Version 3.7.9 - 06/01/2026</h2>
<ul>
<li><i>[ChatGPT Web]</i> Fix: Correctly getting the job completion [<a href="https://github.com/micz/ThunderAI/issues/607">#607</a>].</li>
</ul>
<h2>Version 3.7.8 - 18/12/2025</h2>
<ul>
<li>Greek (el) translation added, thanks to <a href="https://github.com/christoskaterini">ChristosK.</a>.</li>
</ul>
<h2>Version 3.7.7 - 14/12/2025</h2>
<ul>
<li><i>[Claude API][OpenAI API]</i> Fix: asking required permissions before fetching models [<a href="https://github.com/micz/ThunderAI/issues/558">#558</a>].</li>
<li><i>[Google Gemini API][Ollama API][OpenAI API][OpenAI Comp API]</i> Fix: improved error handling when parsing responses [<a href="https://github.com/micz/ThunderAI/issues/550">#550</a>].</li>
</ul>
<h2>Version 3.7.6 - 08/12/2025</h2>
<ul>
<li><i>[Claude API]</i> Added the System Prompt configuration option [<a href="https://github.com/micz/ThunderAI/issues/549">#549</a>].</li>
<li><i>[ChatGPT Web]</i> Fix: correctly showing the input field after an update in the HTML page from OpenAI [<a href="https://github.com/micz/ThunderAI/issues/556">#556</a>].</li></li>
</ul>
<h2>Version 3.7.5 - 22/10/2025</h2>
<ul>
<li><i>[OpenAI API]</i> Fixed a bug when handling responses without choices [<a href="https://github.com/micz/ThunderAI/issues/535">#535</a>].</li>
</ul>
<h2>Version 3.7.4 - 20/10/2025</h2>
<ul>
<li><i>[ChatGPT Web]</i> Fixed a bug preventing the ChatGPT web interface from working in new installs [<a href="https://github.com/micz/ThunderAI/issues/534">#534</a>].</li>
</ul>
<h2>Version 3.7.3 - 16/10/2025</h2>
<ul>
<li><i>[ChatGPT Web]</i> Fix: Correctly managing custom projects in any condition [<a href="https://github.com/micz/ThunderAI/issues/520">#520</a>].</li>
<li><i>[OpenAI API]</i> Added an optional permission for the OpenAI API endpoint to avoid a CORS errors [<a href="https://github.com/micz/ThunderAI/issues/529">#529</a>].</li>
</ul>
<h2>Version 3.7.2 - 03/10/2025</h2>
<ul>
<li><i>[ChatGPT Web]</i> Fix: Not showing the force complete hint if the prompt has not been sent.</li>
<li><i>[ChatGPT Web]</i> Fix: Correctly getting when ChatGPT has finished sending the response even when using custom projects.</li>
<li><i>[ChatGPT Web]</i> Fix: Under certain conditions, asking for additional text prevents ThunderAI from sending the prompt to ChatGPT [<a href="https://github.com/micz/ThunderAI/issues/522">#522</a>].</li>
</ul>
<h2>Version 3.7.1 - 26/09/2025</h2>
<ul>
<li><i>[Google Gemini API]</i> Fix: Correctly handling empty responses [<a href="https://github.com/micz/ThunderAI/issues/514">#514</a>].</li>
</ul>
<h2>Version 3.7.0 - 18/09/2025</h2>
<ul>
<li><i>[All APIs]</i> It's now possibile to define a list of tags to be used when autotagging received emails [<a href="https://github.com/micz/ThunderAI/issues/436">#436</a>]. The tags are are now shown in the information header in the AI API chat [<a href="https://github.com/micz/ThunderAI/issues/289">#289</a>].</li>
<li><i>[All APIs]</i> The prompt id and name are now shown in the information header in the AI API chat [<a href="https://github.com/micz/ThunderAI/issues/436">#436</a>].</li>
<li><i>[All APIs]</i> It's now possibile to define a specific API integration for spamfilter and auto tagging [<a href="https://github.com/micz/ThunderAI/issues/438">#438</a>].</li>
<li>Added the <i>{%mail_attachments_info%}</i> placeholder to retrieve the name, type and file size of the mail attachments [<a href="https://github.com/micz/ThunderAI/issues/446">#446</a>].</li>
<li><i>[Google Gemini API]</i> Support for the thinkingBudget parameter has been added [<a href="https://github.com/micz/ThunderAI/issues/494">#494</a>].</li>
<li><i>[OpenAI Comp API]</i> Added DeepSeek configuration [<a href="https://github.com/micz/ThunderAI/issues/486">#486</a>].</li>
<li><i>[ChatGPT Web]</i> Added a message to explain to click on "Force completion" if the ChatGPT job is not done after 7 seconds [<a href="https://github.com/micz/ThunderAI/issues/419">#419</a>].</li>
<li>Anthropic API renamed to Claude API [<a href="https://github.com/micz/ThunderAI/issues/510">#510</a>].</li>
<li><i>[All APIs]</i> The prompt id and name are now shown in the information header in the AI API chat [<a href="https://github.com/micz/ThunderAI/issues/436">#436</a>].</li>
<li><i>[Google Gemini API]</i>Support for the thinkingBudget parameter has been added [<a href="https://github.com/micz/ThunderAI/issues/494">#494</a>].</li>
<li>Various code improvements and minor bugs fixed.</li>
<li><i>[All APIs]</i> It's now possibile to define a list of tags to be used when autotagging received emails [<a href="https://github.com/micz/ThunderAI/issues/436">#436</a>]. The tags are are now shown in the information header in the AI API chat [<a href="https://github.com/micz/ThunderAI/issues/289">#289</a>].</li>
<li><i>[OpenAI Comp API]</i> Added DeepSeek configuration [<a href="https://github.com/micz/ThunderAI/issues/486">#486</a>].</li>
<li>...</li>
</ul>
<h2>Version 3.6.1 - 23/08/2025</h2>
<ul>
@ -491,7 +343,7 @@
<li>Added a better error message when there is an error fetching models.</li>
<li>When selecting a correct model in the options page, the field is no more highlighted in red [<a href="https://github.com/micz/ThunderAI/issues/100">#100</a>].</li>
<li>When using the ChatGPT API, the double quotes at the beginning and end of the response are removed [<a href="https://github.com/micz/ThunderAI/issues/99">#99</a>].</li>
<li><i>[ChatGPT Web]</i> "Keep formatting" option removed.</li>
<li><i>[ChatGPT Web]</i>"Keep formatting" option removed.</li>
</ul>
<h2>Version 2.0.1 - 09/08/2024</h2>
<ul>

View file

@ -1,65 +0,0 @@
# ThunderAI - Claude Code Guide
## Project Overview
ThunderAI is a **Thunderbird WebExtension (Manifest V2)** that integrates multiple AI providers (ChatGPT Web, OpenAI API, Google Gemini, Claude/Anthropic, Ollama, and OpenAI-compatible APIs) directly into the Thunderbird email client.
- **Extension ID:** `thunderai@micz.it`
- **Min Thunderbird:** 140.0+
- **Language:** Plain ES6+ JavaScript modules — no build tools, no transpilation, no npm
- **License:** GPLv3
## Key Rules
1. **Localization:** Modify ONLY `_locales/en/messages.json`. All other locale files are managed via Weblate — never touch them.
2. **No build system:** There is no bundler, compiler, or package manager. All JS files are plain ES6 modules loaded directly by the browser engine.
3. **Module imports:** Use relative paths with `.js` extension (e.g., `import { foo } from '../js/mzta-utils.js'`).
4. **Placeholder format:** Placeholders in prompt text use the `{%placeholder_id%}` syntax (e.g., `{%mail_text_body_or_selected%}`).
5. **No test suite:** There is no automated test framework. Testing is done manually in Thunderbird.
6. **Settings defaults:** All new preferences must be added to `options/mzta-options-default.js` in `prefs_default`.
7. **Keep spec files up to date:** When making code changes that affect a subsystem described in claude-spec/, update the relevant spec file to reflect the new behavior. Read the spec before modifying, update it after.
## Directory Map
```
/
├── mzta-background.js # Background script (main entry point)
├── mzta-background.html # Loads the background script
├── manifest.json # Extension manifest
├── js/ # Core modules
│ ├── api/ # AI API integration modules
│ ├── workers/ # Web Workers (one per API provider)
│ ├── lib/ # Third-party libraries (diff.js)
│ └── mzta-*.js # Core utilities, menus, prompts, placeholders
├── options/ # Settings UI
│ ├── mzta-options.html/.js/.css
│ ├── mzta-options-default.js # ALL default preference values
│ └── mzta-release-notes.html
├── pages/ # Feature-specific settings pages
│ ├── addtags/
│ ├── customprompts/
│ ├── customdataplaceholders/
│ ├── get-calendar-event/
│ ├── get-task/
│ ├── spamfilter/
│ ├── summarize/
│ └── onboarding/
├── popup/ # Popup menu (shown on toolbar click)
│ └── mzta-popup.html/.js/.css
├── _locales/ # Localization
│ ├── en/messages.json # ← ONLY THIS FILE is edited directly
│ └── [15 other languages managed by Weblate]
├── images/ # Icons and graphical assets
└── api_webchat/ # Web chat API interface
```
## Spec Files
For detailed documentation see [`claude-spec/`](claude-spec/):
- [01-architecture.md](claude-spec/01-architecture.md) — Module structure and data flow
- [02-prompts.md](claude-spec/02-prompts.md) — Prompt system (types, actions, properties)
- [03-placeholders.md](claude-spec/03-placeholders.md) — Placeholder system
- [04-api-integrations.md](claude-spec/04-api-integrations.md) — AI provider integrations
- [05-options.md](claude-spec/05-options.md) — Settings and preferences system
- [06-localization.md](claude-spec/06-localization.md) — i18n rules and workflow
- [99-thunderbird-team-spec.md](claude-spec/99-thunderbird-team-spec.md) — Thunderbird WebExtensions development guidelines (API usage, experiments, review requirements)

View file

@ -1,15 +1,11 @@
cs
de
el
en
es
fr
hr
it
ja
pl
pt-br
ru
sv
zh_Hans
zh_Hant

View file

@ -1,6 +1,6 @@
# ![ThunderAI icon](images/icon-32px.png "ThunderAI") ThunderAI
ThunderAI is a Thunderbird Addon that uses the capabilities of ChatGPT, Google Gemini, Claude or Ollama to enhance email management.
ThunderAI is a Thunderbird Addon that uses the capabilities of ChatGPT, Google Gemini, Anthropic or Ollama to enhance email management.
It enables users to analyse, write, correct, assign tags, create calendar events or tasks and optimize their emails, facilitating more effective and professional communication.
@ -31,15 +31,8 @@ Using an API integration, you can activate some automatic features:
> <br>
>
> - **Google Gemini**
> - You can use also the _System Instructions_ and _thinkingBudget_ options if needed.
> - You can use also the _System Instructions_ option if needed.
>
>
> <br>
>
> - **Claude API**
> - You need to grant the permission "_Access your data for sites in the https://anthropic.com domain_" to use the Claude API.
>
>
> <br>
>
> - **Using Ollama**
@ -51,25 +44,14 @@ Using an API integration, you can activate some automatic features:
> - **OpenAI Compatible API**
> - You can also use a local OpenAI Compatible API server, like LM Studio or Mistral AI!
> - There is also an option to remove the "v1" segment from the API url, if needed, and to manually set the model name if the server doesn't have a models list endpoint.
> - You can also use one of these predefined configurations:
> - DeepSeek API
> - Grok API
> - Mistral API
> - OpenRouter API
> - Perplexity API
>
> <br>
>
> - **Anthropic API**
> - Use Claude directly!
<br>
## Documentation
[Setup Guides](https://micz.it/thunderbird-addon-thunderai/guides/) - Step-by-step guides to connect ThunderAI to the AI backend of your choice, from ChatGPT to local models with Ollama.
[Custom Prompt Tutorial](https://micz.it/thunderbird-addon-thunderai/tutorial/) - Learn how to build your first custom prompt from scratch, combining placeholders and user input to automate your email replies.
[ThunderAI Prompt Architect](https://chatgpt.com/g/g-69b6b11c89b88191a6798be6e97025f1-thunder-ai-prompt-architect) - Let ChatGPT help you crafting your custom prompts. Thanks to [Paweł](https://github.com/PawelKinczyk) for this tool!
<br>
## Translations
@ -77,8 +59,6 @@ Do you want to help translate this addon?
[Find out how!](https://micz.it/thunderbird-addon-thunderai/translate/)
<br>
## Changelog
@ -100,20 +80,15 @@ Are you using this addon in your Thunderbird?
## Attributions
### Translations
- Brazilian Portuguese - Português Brasileiro (pt-br): Bruno Pereira de Souza <img src="https://micz.it/weblate/thunderai/pt-br.svg">
- Chinese (Simplified) - Jiǎntǐ Zhōngwén (简体中文) (zh_Hans): [jeklau](https://github.com/jeklau), [Min9X1n](https://github.com/Min9X1n) <img src="https://micz.it/weblate/thunderai/zh_Hans.svg">
- Chinese (Traditional) - Fántǐ Zhōngwén (繁體中文) (zh_Hant): [evez](https://github.com/evez) <img src="https://micz.it/weblate/thunderai/zh_Hant.svg">
- Croatian - Hrvatski (hr): Petar Jedvaj <img src="https://micz.it/weblate/thunderai/hr.svg">
- Czech - Čeština (cs): [Fjuro](https://hosted.weblate.org/user/Fjuro/), [Jaroslav Staněk](https://hosted.weblate.org/user/jaroush/) <img src="https://micz.it/weblate/thunderai/cs.svg">
- French - Français (fr): Generated automatically, [Noam](https://github.com/noam-sc) <img src="https://micz.it/weblate/thunderai/fr.svg">
- German - Deutsch (de): Generated automatically <img src="https://micz.it/weblate/thunderai/de.svg">
- Greek - Elliniká (Ελληνικά) (el): [ChristosK.](https://github.com/christoskaterini) <img src="https://micz.it/weblate/thunderai/el.svg">
- Italian - Italiano (it): [Mic](https://github.com/micz) <img src="https://micz.it/weblate/thunderai/it.svg">
- Japanese - Nihongo (日本語) (ja): [Taichi Ito](https://github.com/watya1) <img src="https://micz.it/weblate/thunderai/ja.svg">
- Polish - Polski (pl): [neexpl](https://github.com/neexpl), [makkacprzak](https://github.com/makkacprzak) <img src="https://micz.it/weblate/thunderai/pl.svg">
- Russian - Russkiy (русский) (ru): [Maksim](https://hosted.weblate.org/user/law820314/) <img src="https://micz.it/weblate/thunderai/ru.svg">
- Spanish - Español (es): [Gerardo Sobarzo](https://hosted.weblate.org/user/gerardo.sobarzo/), [Andrés Rendón Hernández](https://hosted.weblate.org/user/arendon/), [Erick Limon](https://hosted.weblate.org/user/ErickLimonG/) <img src="https://micz.it/weblate/thunderai/es.svg">
- Swedish - Svenska (sv): [Andreas Pettersson](https://hosted.weblate.org/user/Andy_tb/), [Luna Jernberg](https://hosted.weblate.org/user/bittin1ddc447d824349b2/) <img src="https://micz.it/weblate/thunderai/sv.svg">
- Chinese (Simplified): [jeklau](https://github.com/jeklau) <img src="https://micz.it/weblate/thunderai/zh_Hans.svg">
- Chinese (Traditional): [evez](https://github.com/evez) <img src="https://micz.it/weblate/thunderai/zh_Hant.svg">
- Czech (cs): [Fjuro](https://hosted.weblate.org/user/Fjuro/), [Jaroslav Staněk](https://hosted.weblate.org/user/jaroush/) <img src="https://micz.it/weblate/thunderai/cs.svg">
- French (fr): Generated automatically, [Noam](https://github.com/noam-sc) <img src="https://micz.it/weblate/thunderai/fr.svg">
- German (de): Generated automatically <img src="https://micz.it/weblate/thunderai/de.svg">
- Italian (it): [Mic](https://github.com/micz/) <img src="https://micz.it/weblate/thunderai/it.svg">
- Polski (pl): [neexpl](https://github.com/neexpl), [makkacprzak](https://github.com/makkacprzak) <img src="https://micz.it/weblate/thunderai/pl.svg">
- Russian (ru): [Maksim](https://hosted.weblate.org/user/law820314/) <img src="https://micz.it/weblate/thunderai/ru.svg">
- Português Brasileiro (pt-br): Bruno Pereira de Souza <img src="https://micz.it/weblate/thunderai/pt-br.svg">
<br>
Do you want to help translate this addon? [Find out how!](https://micz.it/thunderbird-addon-thunderai/translate/) <br>
@ -129,11 +104,6 @@ _The language status represents the percentage of translated strings in the late
- [JessiGue](https://www.flaticon.com/authors/jessigue) for the show/hide icon for api key fields
- [Iconka.com](https://www.iconarchive.com/artist/iconka.html) for the autotag context menu icon
- [Icojam](https://www.iconarchive.com/artist/icojam.html) for the spam filter context menu icon
- [Roundicons](https://www.flaticon.com/authors/roundicons) for the summarize context menu icon
- [HideMau](https://www.flaticon.com/authors/hidemaru) for the ai summarize icon
- [Hilmy Abiyyu A.](https://www.flaticon.com/authors/hilmy-abiyyu-a) for the ai translate and context menu icons
- [bearicons](https://www.flaticon.com/authors/bearicons) for the empty context menu icon
- [meaicon](https://www.flaticon.com/authors/meaicon) for the add task context menu icon
<br>

View file

@ -1,11 +1,2 @@
file: pages\_lib\list.js
source: https://raw.githubusercontent.com/javve/list.js/v2.3.1/dist/list.js
file: pages\_lib\tom-select.base.js
source: https://cdn.jsdelivr.net/npm/tom-select@v2.6.1/dist/js/tom-select.base.js
file: pages\_lib\tom-select.default.min.css
source: https://cdn.jsdelivr.net/npm/tom-select@v2.6.1/dist/css/tom-select.default.min.css
file: js\lib\diff.js
source: https://cdnjs.cloudflare.com/ajax/libs/jsdiff/7.0.0/diff.js
source: https://raw.githubusercontent.com/javve/list.js/v2.3.1/dist/list.js

View file

@ -1,6 +1,6 @@
{
"extensionDescription": {
"message": "Използвайте ChatGPT, Google Gemini, Claude или Ollama, за да подобрите вашите имейли!"
"message": "Използвайте ChatGPT, Google Gemini, Anthropic или Ollama, за да подобрите вашите имейли!"
},
"menu_title": {
"message": "ИИ"
@ -18,7 +18,7 @@
"message": "Отговаряне с команда"
},
"prompt_rewrite_polite": {
"message": "Пренаписване по-учтиво"
"message": "Препаписване по-учтиво"
},
"prompt_rewrite_formal": {
"message": "Пренаписване по-формално"
@ -26,175 +26,10 @@
"prompt_classify": {
"message": "Класифициране"
},
"prompt_summarize_this": {
"message": "Обобщаване"
},
"prompt_translate_this": {
"message": "Превеждане"
},
"prompt_this": {
"message": "Поискайте това"
},
"prompt_selection_needed": {
"message": "Селектирайте текст, за да продължите!"
},
"customPrompts_managePrompts": {
"message": "Управление на подкани"
},
"more_info_string": {
"message": "Повече информация"
},
"customPrompts_managePrompts_info_default": {
"message": "Подканите по подразбиране не са редактируеми. Можете да ги изключите, да копирате текста им и да го поставите в нова, модифицирана версия."
},
"customPrompts_managePrompts_info_default_2": {
"message": "Можете да внесете и изнесете подканите. Съществуващите подкани със същото ID ще бъдат презаписани. Подканите с нови ID-та ще бъдат добавени."
},
"customPrompts_managePrompts_info_default_3": {
"message": "Ако всичко е правилно, след внасянето натиснете бутона \"Запази всичко\"."
},
"customPrompts_start_saving": {
"message": "Запазване на подканите..."
},
"customPrompts_reindexing_list": {
"message": "Преиндексиране на списъка..."
},
"customPrompts_filtering_prompts": {
"message": "Филтриране на подканите..."
},
"customPrompts_saving_default_prompts": {
"message": "Запазване на подкани по подразбиране..."
},
"customPrompts_saving_custom_prompts": {
"message": "Запазване на персонализирани подкани..."
},
"customPrompts_reloading_menus": {
"message": "Презареждане на менюта..."
},
"customPrompts_saved": {
"message": "Подканите са запазени!"
},
"customPrompts_form_label_ID": {
"message": "ID"
},
"customPrompts_form_label_ID_rules": {
"message": "Трябва да е уникално, с малки букви и без разстояния"
},
"customPrompts_form_label_Name": {
"message": "Име"
},
"customPrompts_form_label_Text": {
"message": "Текст на подкана"
},
"customPrompts_form_label_Action": {
"message": "Действие"
},
"customPrompts_form_label_need_selected": {
"message": "Необходима е селекция на текст"
},
"customPrompts_form_label_need_signature": {
"message": "Винаги добавяй подпис"
},
"customPrompts_form_label_need_custom_text": {
"message": "Поискай допълнителен текст"
},
"customPrompts_form_label_enabled": {
"message": "Разрешено"
},
"customPrompts_form_label_use_diff_viewer": {
"message": "Активиране на инструмента за сравнение на текст"
},
"customPrompts_form_label_use_diff_viewer_title": {
"message": "Инструментът за сравнение на текст може да бъде избран, когато действието е зададено на „Замести текст“."
},
"customPrompts_form_required_fields": {
"message": "Задължително поле"
},
"customPrompts_btnEdit": {
"message": "Редакция"
},
"customPrompts_btnCancel": {
"message": "Откажи"
},
"customPrompts_btnOK": {
"message": "ОК"
},
"customPrompts_btnDelete": {
"message": "Изтрий"
},
"customPrompts_btnDelete_confirmText": {
"message": "Сигурни ли сте, че искате да изтриете този елемент?"
},
"customPrompts_unsaved_changes": {
"message": "Има незапазени промени!"
},
"btnSaveAll_string": {
"message": "Запази всичко"
},
"btnNew_string": {
"message": "Добави нов"
},
"customPrompts_btnAddNewCommit": {
"message": "Добави подканата"
},
"customPrompts_add_to_menu": {
"message": "Добави към меню"
},
"customPrompts_add_to_menu_always": {
"message": "Винаги"
},
"customPrompts_add_to_menu_reading": {
"message": "Четене на писмо"
},
"customPrompts_add_to_menu_composing": {
"message": "Писане на писмо"
},
"customPrompts_close_button": {
"message": "Бутон за изключване"
},
"customPrompts_do_reply": {
"message": "Отговори"
},
"customPrompts_substitute_text": {
"message": "Замени тескт"
},
"chatgpt_win_working": {
"message": "В процес на работа..."
},
"chatgpt_win_job_completed": {
"message": "Завършено!"
},
"chatgpt_win_job_completed_select": {
"message": "Изберете текста, който искате да използвате, и щракнете върху бутона."
},
"chatgpt_win_get_answer": {
"message": "Използвайте избрания отговор"
},
"chatgpt_win_close": {
"message": "Затвори"
},
"chatgpt_textarea_not_found_error": {
"message": "Изглежда, че страницата на ChatGPT се зарежда твърде бавно. Ако зареждането приключи, щракнете върху бутона вдясно. Ако проблемът продължава, моля, проверете състоянието на услугата."
},
"chatgpt_btn_retry": {
"message": овторeн опит"
},
"chatgpt_sendbutton_not_found_error": {
"message": "Кликнете върху бутона за изпращане, за да изпратите подканата."
},
"chatgpt_user_not_logged_in": {
"message": "Не сте влезли в ChatGPT. Моля, влезте с вашите идентификационни данни, затворете прозореца на ChatGPT и след това повторете действието, което сте опитали. След това ще останете влезли."
},
"chatgpt_win_model_warning": {
"message": "По някаква причина не е възможно да се провери дали е зареден правилният модел. Засега можете да натиснете синия бутон, за да продължите."
},
"chatgpt_win_custom_text": {
"message": "Въведете тук допълнителния текст за подканата."
},
"chatgpt_win_send": {
"message": "Изпрати"
},
"warn_API_needed": {
"message": "За да използвате тази функция, ви е необходима API интеграция, а не ChatGPT Web интеграция. Можете да дефинирате конкретен API на страницата с настройки на функцията, като първо поставите отметка в квадратчето по-горе и след това щракнете върху бутона отляво."
},
"prefs_google_gemini_thinking_budget": {
"message": "Бюджет за мислене"
}
}

View file

@ -24,7 +24,7 @@
"message": "Přidat do nabídky"
},
"extensionDescription": {
"message": "Použijte ChatGPT, Google Gemini, Claude nebo Ollama pro vylepšení vašich e-mailů!"
"message": "Použijte ChatGPT, Google Gemini, Anthropic nebo Ollama pro vylepšení vašich e-mailů!"
},
"menu_title": {
"message": "AI"
@ -59,6 +59,9 @@
"prompt_translate_this": {
"message": "Přeložit"
},
"prompt_summarize_this": {
"message": "Shrnout"
},
"customPrompts_managePrompts": {
"message": "Spravovat dotazy"
},
@ -293,6 +296,9 @@
"chatgpt_empty_model": {
"message": "Nevybrali jste model pro ChatGPT API. Vyberte jej prosím na stránce s možnostmi."
},
"chagpt_api_connecting": {
"message": "Pokouším se připojit k OpenAI ChatGPT pomocí poskytnutého klíče API"
},
"chagpt_api_send_button": {
"message": "Používám model"
},
@ -329,6 +335,12 @@
"ollama_empty_model": {
"message": "Nevybrali jste model pro Ollama API. Prosím, vyberte jej na stránce s nastavením."
},
"ollama_api_connecting": {
"message": "Pokouším se připojit k lokálnímu serveru Ollama pomocí hostitele"
},
"andModel": {
"message": "a model"
},
"error_connection_interrupted": {
"message": "Spojení se serverem bylo neočekávaně přerušeno"
},
@ -356,6 +368,9 @@
"OpenAIComp_empty_model": {
"message": "Nevybrali jste model pro API kompatibilní s OpenAI. Prosím, vyberte jej na stránce s nastavením."
},
"OpenAIComp_api_connecting": {
"message": "Pokouším se připojit k lokálnímu serveru API kompatibilního s OpenAI pomocí hostitele"
},
"OpenAIComp_api_request_failed": {
"message": "Požadavek na OpenAI Comp API selhal"
},
@ -392,6 +407,9 @@
"chatgpt_btn_model": {
"message": "Použít aktuální model"
},
"SendingPrompt": {
"message": "Odesílání výzvy..."
},
"AddTags_prompt_text_title": {
"message": "Aktuální text výzvy"
},
@ -420,10 +438,10 @@
"message": "Pokud je zaškrtnuto, bude do nabídky přidána položka pro získání informací o události kalendáře z vybraného textu."
},
"prefs_OptionText_add_tags_auto_force_existing_Info": {
"message": "Pokud je zaškrtnuto, AI bude přidávat pouze existující štítky a nebude vytvářet nové."
"message": "Pokud je zaškrtnuto, AI bude nově přijatým e-mailům přidávat pouze existující štítky a nebude vytvářet nové."
},
"prompt_spamfilter": {
"message": "Analyzovat spam"
"message": "Detekovat spamové e-maily"
},
"placeholder_thunderai_def_sign": {
"message": "Výchozí podpis podle nastavení ThunderAI."
@ -461,7 +479,7 @@
"Spam_Value": {
"message": "Hodnota spamu"
},
"no_string": {
"spamfilter_not_moved": {
"message": "Ne"
},
"prefsInfoDesc_4": {
@ -492,7 +510,7 @@
"message": "Modely ChatGPT"
},
"spamfilter_no_reports": {
"message": "Zatím nebyly žádné zprávy zkontrolovány na spam. Zde naleznete seznam posledních 100 hlášení spamu."
"message": "Zatím nebyly žádné zprávy zkontrolovány na spam. Zde naleznete seznam posledních 100 hlášení spamu pouze pro aktuální relaci."
},
"SpamFilter_prompt_prefs_title": {
"message": "\"Možnosti filtru spamu\""
@ -521,7 +539,7 @@
"Date": {
"message": "Datum"
},
"yes_string": {
"spamfilter_moved": {
"message": "Ano"
},
"Report_Date": {
@ -572,6 +590,9 @@
"GoogleGemini_Models_Fetch": {
"message": "Aktualizovat seznam modelů Google Gemini"
},
"google_gemini_api_connecting": {
"message": "Probíhá pokus o připojení ke Google Gemini pomocí zadaného API klíče"
},
"google_gemini_empty_apikey": {
"message": "Nezadali jste API klíč pro Google Gemini API. Vložte jej na stránce možností."
},
@ -623,7 +644,7 @@
"prefs_OptionText_add_tags_auto_only_inbox_Info": {
"message": "Pokud je zaškrtnuto, AI bude přidávat štítky pouze e-mailům přijatým ve složce Doručená pošta."
},
"placeholder_thunderai_def_lang": {
"thunderai_def_lang": {
"message": "Výchozí jazyk podle nastavení ThunderAI."
},
"StorageSpace": {
@ -638,6 +659,12 @@
"prefs_OptionText_dynamic_menu_force_enter_info": {
"message": "Pokud je zaškrtnuto, použití klávesové zkratky CTRL+ALT+A automaticky odešle zvýrazněnou výzvu z menu. Jinak se uživateli zobrazí název výzvy a pro její odeslání bude nutné znovu stisknout klávesu Enter."
},
"prefs_OptionText_dynamic_menu_order_alphabet": {
"message": "Menu: seřadit abecedně"
},
"prefs_OptionText_dynamic_menu_order_alphabet_info": {
"message": "Pokud je zaškrtnuto, výzvy v menu budou seřazeny abecedně."
},
"prefs_OptionText_chatgpt_win_dims_info": {
"message": "Nastavte na 0, pokud nechcete specifikovat velikost okna."
},
@ -707,6 +734,9 @@
"prefs_OptionText_owl_warning": {
"message": "Zdá se, že alespoň jeden z vašich účtů používá doplněk Owl for Exchange. Mezi Thunderbirdem a Owlem je známý problém, který se v současné době řeší. V tuto chvíli můžete používat ThunderAI při psaní e-mailů, ale ne při jejich čtení."
},
"prefs_OptionText_chatgpt_web_model_tooltip": {
"message": "Kliknutím na hodnotu ji nastavíte."
},
"prompt_reply_full_text": {
"message": "Odpovězte na následující e-mail. Odpovězte pouze potřebným textem a bez dalších komentářů nebo jiného textu."
},
@ -731,14 +761,17 @@
"prompt_classify_full_text": {
"message": "Klasifikujte následující text z hlediska zdvořilosti, vřelosti, formálnosti, asertivity, urážlivosti a uveďte procento pro každou kategorii. Odpovězte pouze kategorií a skóre bez dalších komentářů nebo jiného textu."
},
"prompt_summarize_this_full_text": {
"message": "Shrňte následující e-mail do seznamu s odrážkami."
},
"prompt_translate_this_full_text": {
"message": "Přeložte níže uvedený e-mail do jazyka {%thunderai_translate_lang%}.\n\nPravidla:\n- Přeložte předmět i tělo zprávy.\n- Výsledek vraťte jako objekt JSON se třemi poli: „subject“, „body“ a „status“.\n- Pokud byl překlad proveden, status se rovná 1.\n- Pokud je e-mail napsán v jednom z těchto jazyků „{%thunderai_translate_exclude_lang%}“ nebo v jazyce {%thunderai_translate_lang%}, vraťte prázdný řetězec pro pole „body“ a „subject“ a nastavte status na -1.\n- Nepřidávejte žádná vysvětlení, poznámky ani žádný text mimo JSON.\n\nPředmět e-mailu: {%mail_subject%}\n\nTělo e-mailu: {%mail_html_body%}\n\nOdpověď vygenerujte pouze ve formátu JSON. Výstupem musí být pouze objekt JSON. Zde je příklad formátu JSON, který má být použit:\n{\n\"subject\": \"překlad předmětu\",\n\"body\": \"překlad těla\",\n\"status\": \"výsledek statusu\"\n}"
"message": "Přeložte následující e-mail do"
},
"prompt_this_full_text": {
"message": "Odpovězte pouze potřebným textem a bez dalších komentářů nebo jiného textu."
},
"prompt_add_tags": {
"message": "Přidat štitky"
"message": "Přidat štitky k tomuto e-mailu"
},
"prefs_OptionText_add_tags_Info": {
"message": "Pokud je zaškrtnuto, do menu bude přidána položka pro aplikaci štítků na e-maily."
@ -756,7 +789,7 @@
"message": "Pokud je zaškrtnuto, štitky, které jsou přítomny v seznamu vyloučení, budou skryty v potvrzovacím dialogu."
},
"prompt_add_tags_full_text": {
"message": "Analyzuj následující text e-mailu a vytvoř JSON pole tagů, které shrnují jeho obsah. Jako tagy použij témata, klíčová témata a relevantní popisné prvky. Ujisti se, že tagy jsou stručné a relevantní k obsahu e-mailu.\nText e-mailu: {%mail_text_body%}\nPro kontext zvaž následující podrobnosti:\n- Odesílatel: {%author%}\n- Příjemci: {%recipients%}\n- Seznam kopií: {%cc_list%}\n- Předmět e-mailu: {%mail_subject%}\nVycházej z textu e-mailu a kontextu při generování tagů, ignoruj zbytečné informace nebo nepodstatné detaily.\nVygeneruj odpověď pouze ve formátu JSON. Výstupem by mělo být pouze JSON pole tagů, bez jakéhokoli dalšího komentáře nebo textu. Zde je příklad formátu JSON, který je třeba použít:\n{\n\"tags\": [\"tag1\", \"tag2\", \"tag3\", \"tag4\", \"tag5\"]\n}"
"message": "Analyzujte následující text e-mailu a vytvořte JSON pole tagů, které shrnují jeho obsah. Jako tagy použijte témata, klíčová témata a relevantní popisné prvky. Ujistěte se, že tagy jsou stručné a relevantní k obsahu e-mailu.\nText e-mailu: {%mail_text_body%}\nPro kontext zvaž následující podrobnosti:\n- Odesílatel: {%author%}\n- Příjemci: {%recipients%}\n- Seznam kopií: {%cc_list%}\n- Předmět e-mailu: {%mail_subject%}\nVycházejte z textu e-mailu a kontextu při generování tagů, ignorujte zbytečné informace nebo nepodstatné detaily.\nVygenerujte odpověď pouze ve formátu JSON. Výstupem by mělo být pouze JSON pole tagů, bez jakéhokoli dalšího komentáře nebo textu. Zde je příklad formátu JSON, který je třeba použít:\n{\n\"tags\": [\"tag1\", \"tag2\", \"tag3\", \"tag4\", \"tag5\"]\n}"
},
"prefs_OptionText_add_tags_maxnum": {
"message": "Maximální počet štítků"
@ -777,7 +810,7 @@
"message": "Spravovat nastavení štítků"
},
"prompt_get_calendar_event_full_text": {
"message": "Z následujícího textu extrahuj všechny relevantní podrobnosti potřebné k vygenerování události kalendáře. Extrahované informace by měly zahrnovat:\n- Název události\n- Datum a čas zahájení (včetně časového pásma, pokud je uvedeno)\n- Datum a čas ukončení (včetně časového pásma, pokud je uvedeno)\n- Celý den (pokud je zmíněn)\n- Účastníci\nZajisti, aby byla data formátována jasně a konzistentně, aby je bylo možné přímo použít k vytvoření události kalendáře.\nPokud existují relativní časové odkazy, vezmi v úvahu, že datum a čas e-mailu jsou \"{%mail_datetime%}\". Vypočítej datum a čas zahájení na základě tohoto odkazu. Pokud jsou vypočítané datum a čas zahájení dřívější než \"{%current_datetime%}\", přepočti datum a čas zahájení pomocí \"{%current_datetime%}\" jako základu.\nPokud není zadána doba trvání, nastav ji na jednu hodinu.\nToto jsou účastníci: {%author%}, {%recipients%}, {%cc_list%}. Pokud je přítomna, nezahrnuj mou adresu: {%account_email_address%}.\nPokud se jedná o celodenní událost, musí být endDate jeden den po startDate s časem nastaveným na \"T000000\".\nPokud nejsi schopen získat jednu nebo více požadovaných informací, odpověz prázdným řetězcem.\nVygeneruj odpověď pouze ve formátu JSON. Nezahrnuj žádný další text ani vysvětlení; poskytni pouze JSON. Zde je formát, který se má použít:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"Zde je souhrn události kalendáře\",\n\"forceAllDay\": false,\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nZde je text:\"{%mail_text_body_or_selected%}\""
"message": "Z následujícího textu extrahuj všechny relevantní podrobnosti potřebné k vygenerování události kalendáře. Extrahované informace by měly zahrnovat:\n- Název události\n- Datum a čas zahájení (včetně časového pásma, pokud je uvedeno)\n- Datum a čas ukončení (včetně časového pásma, pokud je uvedeno)\n- Celý den (pokud je zmíněn)\n- Účastníci\nZajisti, aby byla data formátována jasně a konzistentně, aby je bylo možné přímo použít k vytvoření události kalendáře.\nPokud existují relativní časové odkazy, vezmi v úvahu, že datum a čas e-mailu jsou \"{%mail_datetime%}\". Vypočítej datum a čas zahájení na základě tohoto odkazu. Pokud jsou vypočítané datum a čas zahájení dřívější než \"{%current_datetime%}\", přepočti datum a čas zahájení pomocí \"{%current_datetime%}\" jako základu.\nPokud není zadána doba trvání, nastav ji na jednu hodinu.\nToto jsou účastníci: {%author%}, {%recipients%}, {%cc_list%}. Pokud je přítomna, nezahrnuj mou adresu: {%account_email_address%}.\nPokud nejsi schopen získat jednu nebo více požadovaných informací, odpověz prázdným řetězcem.\nVygeneruj odpověď pouze ve formátu JSON. Nezahrnuj žádný další text ani vysvětlení; poskytni pouze JSON. Zde je formát, který se má použít:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"Zde je souhrn události kalendáře\",\n\"forceAllDay\": false,\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nZde je text:\"{%selected_text%}\""
},
"prefs_OptionText_get_calendar_event": {
"message": "Přidat novou událost do kalendáře z vybraného textu"
@ -815,6 +848,9 @@
"calendar_opening_dialog_error": {
"message": "Chyba při otevírání dialogu události kalendáře"
},
"sparks_not_installed": {
"message": "ThunderAI Sparks není nainstalován!"
},
"prefs_OptionText_add_tags_auto": {
"message": "Přidávat štítky automaticky"
},
@ -822,10 +858,28 @@
"message": "Pokud je zaškrtnuto, AI automaticky přidá štítky k nově přijatým e-mailům."
},
"prefs_OptionText_add_tags_auto_force_existing": {
"message": "Vynutit existující štítky"
"message": "Vynutit existující štítky při automatickém označování nebo použití kontextového menu"
},
"prompt_spamfilter_full_text": {
"message": "Analyzuj následující e-mail a urči, zda se jedná o spam či nikoli. Zvaž faktory, jako jsou podezřelá klíčová slova, nadměrné propagační výrazy, zavádějící řádky předmětu, žádosti o osobní informace a neobvyklé adresy odesílatele.\nZadej hodnotu od 0 (není spam) do 100 (spam) a vysvětlení o maximálně 10 slovech. \nV případě chybějících údajů zprávy nastavte hodnotu na 0 (není spam) a uveďte důvod.\nVygeneruj odpověď pouze ve formátu JSON. Neuváděj žádný další text nebo vysvětlení; uveď pouze JSON. Zde je formát, který se má použít:\n{\n\"explanation\": \"Stručné vysvětlení vašeho zdůvodnění\",\n\"spamValue\": <celé číslo od 0 do 100>\n}\nZde jsou informace o e-mailu:\nOdesílatel: \"{%author%}\"\nPředmět: \"{%mail_subject%}\"\nText HTML: \"{%mail_html_body%}\""
"message": "Analyzuj následující e-mail a urči, zda se jedná o spam či nikoli. Zvaž faktory, jako jsou podezřelá klíčová slova, nadměrné propagační výrazy, zavádějící řádky předmětu, žádosti o osobní informace a neobvyklé adresy odesílatele.\nZadej hodnotu od 0 (není spam) do 100 (spam) a vysvětlení o maximálně 10 slovech. \nV případě chybějících údajů zprávy nastavte hodnotu na 0 (není spam) a uveďte důvod.\nVygeneruj odpověď pouze ve formátu JSON. Neuváděj žádný další text nebo vysvětlení; uveď pouze JSON. Zde je formát, který se má použít:\n{\n\"spamValue\": <celé číslo od 0 do 100>,\n\"explanation\": \"Stručné vysvětlení vašeho zdůvodnění\"\n}\nZde jsou informace o e-mailu:\nOdesílatel: \"{%author%}\"\nPředmět: \"{%mail_subject%}\"\nText HTML: \"{%mail_html_body%}\""
},
"context_menu_mzta-add-tags": {
"message": "Přidat štítky"
},
"context_menu_mzta-spamfilter": {
"message": "Analýza spamu"
},
"prefs_OptionText_add_tags_context_menu": {
"message": "Zobrazit v nabídce položku „Přidat štítky“"
},
"prefs_OptionText_spamfilter_context_menu": {
"message": "Zobrazit v nabídce položku „Analýza spamu“"
},
"prefs_OptionText_spamfilter_context_menu_Info": {
"message": "Po zaškrtnutí bude po kliknutí pravým tlačítkem na e-mail v seznamu zpráv v kontextové nabídce zobrazena položka „Analýza spamu“."
},
"prefs_OptionText_add_tags_context_menu_Info": {
"message": "Po zaškrtnutí bude po kliknutí pravým tlačítkem na e-mail v seznamu zpráv v kontextové nabídce zobrazena položka „Přidat štítky“."
},
"get_calendar_event_prompt_prefs_title": {
"message": "Možnosti události kalendáře"
@ -906,10 +960,10 @@
"message": "Přidat novou úlohu"
},
"prefs_Anthropic_API_Key": {
"message": "Klíč API Claude"
"message": "Klíč API Anthropic"
},
"Anthropic_Version": {
"message": "Verze API Claude"
"message": "Verze API Anthropic"
},
"Anthropic_Version_Info": {
"message": "POVINNÉ. Neměňte tuto hodnotu, pokud nevíte, co děláte. Více informací zde:"
@ -947,7 +1001,7 @@
"message": "Tento zástupný symbol nepřidává žádný text, ale zabraňuje automatickému přidání těla emailu na konec výzvy."
},
"ask_anthropic_api_permission_1": {
"message": "Pro používání integrace API Claude musíte udělit požadované oprávnění."
"message": "Pro používání integrace API Anthropic musíte udělit požadované oprávnění."
},
"ask_integration_permission_2_popup": {
"message": "Klikněte zde pro otevření nové karty a postupujte podle instrukcí."
@ -980,34 +1034,34 @@
"message": "Pokud je v možnostech nebo v dotazu specifikován projekt, přepíše nastavení Vlastního GPT."
},
"prefs_Connection_type_Anthropic_API": {
"message": "API Claude"
"message": "API Anthropic"
},
"Anthropic_Models": {
"message": "Modely Claude"
"message": "Modely Anthropic"
},
"Anthropic_Models_Fetch": {
"message": "Aktualizovat seznam modelů Claude"
"message": "Aktualizovat seznam modelů Anthropic"
},
"Anthropic_Models_Error_fetching": {
"message": "Chyba při pokusu o načtení modelů Claude"
"message": "Chyba při pokusu o načtení modelů Anthropic"
},
"prefs_OptionText_anthropic_max_tokens": {
"message": "Maximální počet tokenů"
"message": "Maximální počet tokenů Anthropic"
},
"prefs_OptionText_anthropic_max_tokens_Info": {
"message": "Maximální počet tokenů, které se mají vygenerovat v dokončení. Počet tokenů vaší výzvy plus max_tokens nesmí překročit délku kontextu modelu."
},
"anthropic_empty_apikey": {
"message": "Nepřidali jste klíč API pro API Claude. Vložte jej prosím na stránce s možnostmi."
"message": "Nepřidali jste klíč API pro API Anthropic. Vložte jej prosím na stránce s možnostmi."
},
"anthropic_empty_model": {
"message": "Nevybírali jste model pro API Claude. Vyberte jej prosím na stránce s možnostmi."
"message": "Nevybírali jste model pro API Anthropic. Vyberte jej prosím na stránce s možnostmi."
},
"anthropic_empty_version": {
"message": "Nepřidali jste řetězec verze pro API Claude. Vložte jej prosím na stránce s možnostmi."
"message": "Nepřidali jste řetězec verze pro API Anthropic. Vložte jej prosím na stránce s možnostmi."
},
"anthropic_api_request_failed": {
"message": "Selhal požadavek API Claude"
"message": "Selhal požadavek API Anthropic"
},
"_api_connecting": {
"message": "Pokus o připojení k $api_string$ s následující konfigurací...",
@ -1037,7 +1091,7 @@
"message": "Pokud vyberete nějaký text, bude zohledněna pouze tato část."
},
"_api_connecting_host": {
"message": "Host",
"message": "API Server",
"placeholders": {
"api_host": {
"content": "$1"
@ -1066,11 +1120,17 @@
"message": "Počet kontextových tokenů, které se mají použít pro API Ollama. Nastavte na 0, pokud jej nechcete předávat jako parametr serveru."
},
"AccountSelector_Spamfilter": {
"message": "Vyberte účty, na kterých je povolen automatický filtr spamu"
"message": "Vyberte účty, na kterých je povolen filtr spamu"
},
"CORS_alternative_1": {
"message": "Problémy s nastavením CORS?"
},
"CORS_alternative_2": {
"message": "Stiskněte tlačítko níže a udělte oprávnění <all_urls>, abyste se vyhnuli jakýmkoli problémům s CORS."
},
"CORS_give_allurls_perm": {
"message": "Udělit oprávnění \"všechny URL\""
},
"maybe_CORS_openai_comp": {
"message": "Používání API kompatibilního s OpenAI může vyžadovat nastavení CORS na serveru."
},
@ -1106,690 +1166,5 @@
},
"prefs_OptionText_get_calendar_event_Sparks_wrong_version": {
"message": "Pro používání funkcí událostí v kalendáři a úloh, nainstalujte aktualizovanou verzi doplňku ThunderAI Sparks."
},
"prompt_reply_custom_command": {
"message": "Odpovědět pomocí příkazu..."
},
"prompt_string": {
"message": "Prompt (příkaz)"
},
"show_in": {
"message": "Zobrazit v"
},
"show_in_popup": {
"message": "Pouze ve vyskakovacím okně"
},
"show_in_context": {
"message": "Pouze v kontextové nabídce"
},
"show_in_both": {
"message": "Obojí"
},
"webchat_save_as_summary": {
"message": "Uložit jako shrnutí"
},
"prefs_OptionText_reply_type_Info": {
"message": "Toto je výchozí typ odpovědi, který se použije při odpovídání na e-mail. Jiný typ můžete zvolit později v dialogu odpovědi."
},
"prefs_OptionText_btnManageCustomDataPH": {
"message": "Spravovat zástupné symboly dat"
},
"prefs_storage_title": {
"message": "Úložiště"
},
"prefs_storage_info": {
"message": "Úložiště slouží k ukládání informací o spamovém skóre, shrnutích a překladech každé zprávy."
},
"prefs_storage_size": {
"message": "Velikost úložiště"
},
"prefs_storage_clear_button": {
"message": "Vymazat úložiště"
},
"prefs_storage_clear_confirm": {
"message": "Opravdu chcete vymazat všechna uložená data (shrnutí, hlášení o spamu, překlady)? Tuto akci nelze vzít zpět."
},
"prefsInfoDesc_7": {
"message": "Chcete-li používat Google Gemini API, potřebujete API klíč Google Gemini a musíte vybrat model."
},
"prefsInfoDesc_8": {
"message": "Chcete-li používat Claude API, potřebujete API klíč Anthropic Claude a musíte vybrat model."
},
"placeholder_mail_headers": {
"message": "Hlavičky e-mailu"
},
"placeholder_mail_full_headers": {
"message": "Všechny hlavičky e-mailu"
},
"placeholder_mail_text_body_or_selected": {
"message": "Tělo e-mailu nebo vybraný text"
},
"placeholder_mail_html_body_or_selected": {
"message": "Tělo e-mailu nebo vybrané HTML"
},
"prefs_OptionText_chatgpt_web_load_wait_time": {
"message": "Doba čekání na načtení stránky"
},
"prefs_OptionText_chatgpt_web_load_wait_time_info": {
"message": "Doba v milisekundách, po kterou se má čekat na načtení stránky ChatGPT před načtením dalšího obsahu. Výchozí hodnota je 1000 ms. Pokud je definováno vlastní GPT nebo projekt, k této hodnotě se přidá dalších 1000 ms."
},
"prompt_reply_custom_command_full_text": {
"message": "Odpověz na následující e-mail „{%mail_text_body%}“. {%additional_text%}. Odpověz pouze potřebným textem, bez dalších komentářů nebo jiného textu."
},
"reset": {
"message": "Resetovat"
},
"prefs_doc_title": {
"message": "Dokumentace"
},
"prefs_doc_setup_guide": {
"message": "Průvodci nastavením"
},
"prefs_doc_custom_prompt_tutorial": {
"message": "Návod na vlastní prompty"
},
"prefs_doc_open_welcome": {
"message": "Otevřít uvítací stránku"
},
"prompt_get_calendar_event_from_clipboard": {
"message": "Přidat událost do kalendáře ze schránky"
},
"clipboard_read_error": {
"message": "Nepodařilo se přečíst schránku. Zkontrolujte prosím oprávnění."
},
"clipboard_empty_error": {
"message": "Schránka je prázdná. Nejdříve prosím zkopírujte nějaký text."
},
"clipboard_permission_denied": {
"message": "Oprávnění ke schránce bylo zamítnuto. Povolte prosím tuto funkci znovu v nastavení pro udělení oprávnění."
},
"clipboard_permission_error": {
"message": "Chyba při žádosti o oprávnění ke schránce. Zkuste to prosím znovu."
},
"prefs_OptionText_get_calendar_event_from_clipboard": {
"message": "Získat událost kalendáře ze schránky"
},
"prefs_OptionText_get_calendar_event_from_clipboard_Info": {
"message": "Zobrazit další položku menu pro vytváření událostí kalendáře z obsahu schránky."
},
"Summarize_prompt_prefs_title": {
"message": "Možnosti shrnutí"
},
"prompt_summarize": {
"message": "Shrnout"
},
"prompt_summarize_email_template": {
"message": "Šablona pro shrnutí e-mailu"
},
"prompt_summarize_email_separator": {
"message": "Oddělovač e-mailů"
},
"prefs_OptionText_Summarize_infoline2": {
"message": "Prompt můžete libovolně měnit; první pole je hlavní prompt, druhé pole je šablona pro jednotlivý e-mail. Seznam e-mailů bude připojen k hlavnímu promptu. E-maily budou odděleny oddělovačem uvedeným ve třetím poli."
},
"prefs_OptionText_Summarize_main_prompt": {
"message": "Hlavní prompt popisující úkol, který se má provést u všech vybraných e-mailů:"
},
"prefs_OptionText_Summarize_email_template": {
"message": "Šablona pro jeden e-mail:"
},
"prefs_OptionText_Summarize_email_separator": {
"message": "Oddělovač mezi e-maily:"
},
"prefs_OptionText_add_tags_auto_uselist": {
"message": "Použít pouze tyto štítky"
},
"prefs_OptionText_add_tags_auto_uselist_Info": {
"message": "Pokud je zaškrtnuto, AI bude přidávat pouze štítky ze seznamu níže."
},
"prefs_OptionText_add_tags_auto_uselist_list_Info": {
"message": "Seznam musí obsahovat alespoň jeden štítek. Přidejte jeden štítek na řádek nebo je oddělte čárkou."
},
"prompt_add_tags_use_list": {
"message": "Použít pouze štítky v tomto seznamu odděleném čárkami"
},
"prefs_OptionText_add_tags_use_specific_integration_Info": {
"message": "Pokud je zaškrtnuto, pro přidávání štítků k e-mailům se použije model a API uvedené níže, bez ohledu na to, co je vybráno na stránce možností ThunderAI."
},
"prefs_OptionText_get_calendar_event_use_specific_integration_Info": {
"message": "Pokud je zaškrtnuto, pro vytváření událostí v kalendáři se použije model a API uvedené níže, bez ohledu na to, co je vybráno na stránce možností ThunderAI."
},
"placeholder_thunderai_translate_lang": {
"message": "Jazyk, který se má používat při překladu e-mailů."
},
"placeholder_thunderai_translate_exclude_lang": {
"message": "Kódy jazyků, které se nemají překládat, pokud jsou detekovány."
},
"placeholder_mail_attachments_info": {
"message": "Informace o přílohách v e-mailu"
},
"prefs_OptionText_summarize": {
"message": "Shrnout e-mail"
},
"prefs_OptionText_summarize_use_specific_integration_Info": {
"message": "Pokud je zaškrtnuto, pro shrnutí e-mailu (e-mailů) se použije model a API uvedené níže, bez ohledu na to, co je vybráno na stránce možností ThunderAI."
},
"prefs_OptionText_summarize_Info": {
"message": "Pokud je zaškrtnuto, přidá do kontextové nabídky možnost shrnout e-mail(y)."
},
"prefs_OptionText_btnManageSummarizeInfo": {
"message": "Spravovat nastavení shrnutí"
},
"Summarize_PageTitle": {
"message": "Spravovat nastavení shrnutí"
},
"Summarize_info_default": {
"message": "Na této stránce můžete upravit výchozí prompt používaný pro shrnutí e-mailů."
},
"Summarize_prompt_text_title": {
"message": "Aktuální text promptu"
},
"prefs_OptionText_use_specific_integration": {
"message": "Použít konkrétní model a API"
},
"prefs_OptionText_spamfilter_use_specific_integration_Info": {
"message": "Pokud je zaškrtnuto, pro spamový filtr se použije model a API uvedené níže, bez ohledu na to, co je vybráno na stránce možností ThunderAI."
},
"prefs_OptionText_spamfilter_show_msg_panel": {
"message": "Zobrazit panel hlášení o spamu"
},
"prefs_OptionText_spamfilter_show_msg_panel_Info": {
"message": "Pokud je zaškrtnuto, nad zprávou se zobrazí panel s hlášením o spamu."
},
"SpamFilter_skip_addresses_title": {
"message": "Seznam ignorovaných e-mailových adres"
},
"SpamFilter_skip_addresses_infoline": {
"message": "E-maily z těchto adres nebudou odesílány umělé inteligenci k filtraci spamu."
},
"SpamFilter_skip_addresses_infoline2": {
"message": "Přidejte jednu e-mailovou adresu na řádek nebo je oddělte čárkou."
},
"spamfilter_skip_addresses_explanation": {
"message": "Odesílatel je na seznamu ignorovaných adres pro antispam."
},
"prefs_OptionText_spamfilter_skip_addressbook": {
"message": "Ignorovat adresy z adresářů"
},
"prefs_OptionText_spamfilter_skip_addressbook_Info": {
"message": "Pokud je zaškrtnuto, e-maily od odesílatelů ve vašich adresářích nebudou odesílány umělé inteligenci k filtraci spamu."
},
"spamfilter_skip_addressbook_explanation": {
"message": "Odesílatel je kontaktem v adresáři."
},
"addressbook_permission_denied": {
"message": "Oprávnění k adresáři bylo zamítnuto. Povolte prosím tuto funkci znovu pro udělení oprávnění."
},
"addressbook_permission_error": {
"message": "Chyba při žádosti o oprávnění k adresáři. Zkuste to prosím znovu."
},
"Spam": {
"message": "Spam"
},
"Valid": {
"message": "V pořádku"
},
"apiwebchat_done": {
"message": "Hotovo!"
},
"CORS_alternative_2_new": {
"message": "Stiskněte tlačítko níže a udělte oprávnění aktuálnímu hostiteli, abyste se vyhnuli problémům s CORS."
},
"CORS_give_host_perm": {
"message": "Udělit oprávnění aktuálnímu hostiteli"
},
"CORS_localhost_warn": {
"message": "Pokud používáte localhost nebo 127.0.0.1, protože AI server běží na vašem PC, je vyžadováno oprávnění <all_urls>."
},
"ask_openai_api_permission_1": {
"message": "Chcete-li používat integraci OpenAI API, musíte udělit vyžadované oprávnění."
},
"ChatGPT_chatgpt_api_store": {
"message": "Používat úložiště"
},
"ChatGPT_chatgpt_api_store_info": {
"message": "Pokud je zaškrtnuto, vaše chaty budou ukládány společností OpenAI."
},
"prefs_chatgpt_api_temperature_Info": {
"message": "Jakou vzorkovací teplotu použít (mezi 0 a 2). Vyšší hodnoty jako 0,8 učiní výstup náhodnějším, zatímco nižší hodnoty jako 0,2 jej učiní soustředěnějším a determinističtějším."
},
"prefs_ollama_temperature_Info": {
"message": "Teplota modelu. Zvýšení teploty způsobí, že model bude odpovídat kreativněji. Výchozí hodnota je 0,8. Doporučuje se používat hodnoty mezi 0 a 1."
},
"prefs_ollama_think": {
"message": "Povolit přemýšlení (thinking)"
},
"prefs_ollama_think_Info": {
"message": "Pokud je zaškrtnuto, model bude před odpovědí „přemýšlet“. Tato možnost funguje pouze u modelů, které podporují funkci „think“."
},
"prefs_ollama_format_json": {
"message": "Vynutit výstup v JSON"
},
"prefs_ollama_format_json_Info": {
"message": "Pokud je zaškrtnuto, Ollama bude nucena vrátit platnou odpověď ve formátu JSON. Tato možnost funguje pouze u modelů, které podporují strukturovaný výstup."
},
"chatgpt_win_change_reply_type": {
"message": "Kliknutím změníte typ odpovědi"
},
"prefs_OptionText_add_tags_exclusions_exact_match": {
"message": "Přesná shoda vyloučení"
},
"prefs_OptionText_add_tags_exclusions_exact_match_Info": {
"message": "Pokud je zaškrtnuto, slova v seznamu vyloučení musí přesně odpovídat štítkům. V opačném případě dojde ke shodě, i když je slovo součástí štítku."
},
"customDataPH_manageDataPH": {
"message": "Spravovat zástupné symboly dat"
},
"customDataPH_manageDataPH_info_default_3": {
"message": "Můžete také používat výchozí zástupné symboly dat s automatickým doplňováním, stejně jako při psaní vlastních promptů."
},
"customDataPH_manageDataPH_info_default": {
"message": "Na této stránce je možné definovat vlastní zástupné symboly dat pro použití ve vašich vlastních promptech."
},
"customDataPH_manageDataPH_info_default_2": {
"message": "Existující zástupné symboly se stejným ID budou přepsány. Zástupné symboly s novými ID budou přidány."
},
"customDataPH_ExportAll": {
"message": "Exportovat všechny vlastní zástupné symboly dat"
},
"customDataPH_Import": {
"message": "Importovat nové zástupné symboly dat"
},
"customDataPH_form_label_Text": {
"message": "Text zástupného symbolu dat"
},
"customDataPH_saving_custom": {
"message": "Ukládání vlastních zástupných symbolů dat..."
},
"customDataPH_saved": {
"message": "Vlastní zástupné symboly dat byly uloženy!"
},
"customDataPH_btnAddNewCommit": {
"message": "Přidat zástupný symbol dat"
},
"importCustomDataPH_confirmText": {
"message": "Chystáte se importovat nové vlastní zástupné symboly dat."
},
"importCustomDataPH_start_import": {
"message": "Zahajování importu vlastních zástupných symbolů dat..."
},
"importCustomDataPH_import_completed": {
"message": "Import vlastních zástupných symbolů dat byl dokončen! Pro uložení změn musíte kliknout na tlačítko „Uložit vše“."
},
"importCustomDataPH_invalidFile": {
"message": "Soubor, který se pokoušíte importovat, není platným souborem vlastních zástupných symbolů dat."
},
"importCustomDataPH_invalidDataPHs": {
"message": "Soubor, který se pokoušíte importovat, neobsahuje žádné platné vlastní zástupné symboly dat."
},
"customDataPH_add_to_menu": {
"message": "Použitelné v promptech přidaných do nabídky"
},
"prefs_OpenAIComp_ClearModelsList": {
"message": "Vymazat seznam modelů"
},
"OpenAIComp_ClearModelsList_Confirm": {
"message": "Opravdu chcete vymazat seznam modelů? Tuto akci nelze vzít zpět."
},
"prefs_api_temperature": {
"message": "Teplota (Temperature)"
},
"prefs_openai_comp_temperature_Info": {
"message": "Jakou vzorkovací teplotu použít (mezi 0 a 2). Vyšší hodnoty jako 0,8 učiní výstup náhodnějším, zatímco nižší hodnoty jako 0,2 jej učiní soustředěnějším a determinističtějším."
},
"chatgpt_click_force_completion": {
"message": "Zdá se, že nelze zjistit, zda ChatGPT skončil. Kliknutím sem vynutíte dokončení úlohy."
},
"warn_API_needed": {
"message": "Chcete-li používat tuto funkci, potřebujete integraci API namísto webové integrace ChatGPT. Konkrétní API můžete definovat na stránce nastavení funkce tak, že nejprve zaškrtnete políčko výše a poté kliknete na tlačítko vlevo."
},
"prefs_specific_api_indicator": {
"message": "Používá se $1",
"placeholders": {
"1": {
"content": "$1"
}
}
},
"prefs_google_gemini_thinking_budget": {
"message": "Rozpočet pro přemýšlení (Thinking Budget)"
},
"prefs_google_gemini_thinking_budget_Info": {
"message": "Definujte počet tokenů, které se mají použít pro přemýšlení. Pokud vybraný model přemýšlení nepodporuje nebo chcete použít výchozí metodu, ponechte toto pole prázdné. Zadáním 0 přemýšlení zakážete, zadáním -1 povolíte dynamické přemýšlení."
},
"prefs_google_gemini_temperature_Info": {
"message": "Tento parametr musí být číslo mezi 0.0 a 2.0. Ovládá náhodnost výstupu. Výchozí hodnota se liší podle modelu. Ponechte prázdné, pokud parametr v volání API nastavovat nechcete."
},
"SelectAll": {
"message": "Vybrat vše"
},
"DeselectAll": {
"message": "Zrušit výběr všeho"
},
"Anthropic_System_Prompt": {
"message": "Systémový prompt"
},
"Anthropic_System_Prompt_Info": {
"message": "Výkon modelu Claude můžete vylepšit použitím systémového promptu k přidělení role. Tato technika, známá jako „role prompting“, je nejúčinnějším způsobem použití systémových promptů u modelu Claude. Správná role může změnit Clauda z obecného asistenta na vašeho virtuálního odborníka v dané oblasti."
},
"prefs_anthropic_temperature_Info": {
"message": "Míra náhodnosti vkládaná do odpovědi. Výchozí hodnota je 1,0. Rozsah od 0,0 do 1,0. Teplotu blízkou 0,0 použijte pro analytické úkoly nebo výběr z více možností, teplotu blízkou 1,0 pro kreativní a generativní úkoly. Upozorňujeme, že i při teplotě 0,0 nebudou výsledky plně deterministické."
},
"Optional_Permission_Denied_Model_Fetching": {
"message": "Odmítli jste volitelné oprávnění potřebné pro načtení modelů pro tuto integraci."
},
"prefs_OptionText_auto_summary": {
"message": "Povolit automatické shrnutí pomocí AI pro náhledy zpráv"
},
"prefs_OptionText_auto_summary_Info": {
"message": "Pokud je zaškrtnuto, ThunderAI po otevření e-mailu automaticky vygeneruje a zobrazí shrnutí pomocí AI. Upozorňujeme, že to znamená okamžité odeslání všech zpráv, které si prohlížíte, nakonfigurované AI službě."
},
"auto_summary_title": {
"message": "ThunderAI Shrnutí"
},
"auto_summary_generating": {
"message": "Generování shrnutí pomocí AI..."
},
"auto_summary_failed": {
"message": "Nepodařilo se vygenerovat shrnutí pomocí AI. Zkontrolujte prosím nastavení a zkuste to znovu."
},
"customPrompts_export_include_api_settings": {
"message": "Chcete do exportu zahrnout i nastavení API? Uvědomte si, že do souboru bude uložen i váš API klíč!"
},
"prefs_OptionText_calendar_no_selection": {
"message": "Nepožadovat výběr textu"
},
"prefs_OptionText_calendar_no_selection_Info": {
"message": "Pokud je zaškrtnuto, není nutné vybírat text. Pro získání události kalendáře se použije celé tělo zprávy."
},
"prefs_OptionText_calendar_no_selection_missing_placeholder": {
"message": "Aby bylo možné tuto možnost povolit, musí prompt obsahovat zástupný symbol {%mail_text_body_or_selected%} nebo {%mail_html_body_or_selected%}. Přidejte prosím jeden z těchto symbolů do promptu nebo jej resetujte na výchozí hodnotu."
},
"customPrompts_btnCopy": {
"message": "Kopírovat"
},
"copy_text": {
"message": "kopírovat"
},
"spam_check_in_progress": {
"message": "Probíhá kontrola spamu..."
},
"prefs_OptionText_summarize_auto": {
"message": "Automaticky shrnovat zprávy"
},
"prefs_OptionText_summarize_auto_Info": {
"message": "Zvolte, zda se mají při prohlížení zpráv automaticky generovat shrnutí. Vyžaduje připojení přes API (nikoli ChatGPT Web)."
},
"prefs_OptionText_summarize_display_mode": {
"message": "Zobrazit shrnutí v"
},
"prefs_OptionText_summarize_display_mode_Info": {
"message": "Zvolte, kde se zobrazí výsledek shrnutí. Režim „Inline“ zobrazí lištu se shrnutím přímo v panelu zprávy. Režim „Chat window“ otevře okno AI chatu."
},
"prefs_OptionText_summarize_max_display_length": {
"message": "Maximální délka zobrazení"
},
"prefs_OptionText_summarize_max_display_length_Info": {
"message": "Maximální počet znaků zobrazených ve shrnutí v těle zprávy. Nastavte 0 pro neomezenou délku."
},
"prefs_OptionText_summarize_strip_formatting": {
"message": "Odstranit formátování"
},
"prefs_OptionText_summarize_strip_formatting_Info": {
"message": "Odstraní formátování HTML a Markdown ze shrnutí vygenerovaného AI a zobrazí pouze prostý text."
},
"summarize_see_more": {
"message": "Zobrazit více"
},
"summarize_see_less": {
"message": "Zobrazit méně"
},
"summarize_title": {
"message": "ThunderAI Přehled"
},
"get_ai_summary": {
"message": "AI Shrnutí"
},
"summarize_collapse": {
"message": "Sbalit shrnutí"
},
"summarize_generating": {
"message": "Generování shrnutí..."
},
"summarize_error": {
"message": "Shrnutí se nepodařilo vygenerovat"
},
"summarize_click_to_generate": {
"message": "Klikněte zde pro vygenerování shrnutí"
},
"summarize_chatgpt_web_not_supported": {
"message": "Automatické shrnutí vyžaduje připojení přes API. Nakonfigurujte prosím API připojení v nastavení ThunderAI."
},
"summarize_refresh": {
"message": "Obnovit shrnutí"
},
"spamfilter_refresh": {
"message": "Obnovit hlášení o spamu"
},
"spamfilter_delete": {
"message": "Smazat hlášení o spamu"
},
"summarize_delete": {
"message": "Smazat shrnutí"
},
"prefs_OptionText_translate": {
"message": "Přeložit e-mail"
},
"prefs_OptionText_translate_use_specific_integration_Info": {
"message": "Pokud je zaškrtnuto, pro překlad e-mailů se použije model a API uvedené níže, bez ohledu na to, co je vybráno na stránce možností ThunderAI."
},
"prefs_OptionText_translate_Info": {
"message": "Pokud je zaškrtnuto, přidá do těla zprávy tlačítko pro překlad."
},
"prefs_OptionText_btnManageTranslateInfo": {
"message": "Spravovat nastavení překladu"
},
"Translate_PageTitle": {
"message": "Spravovat nastavení překladu"
},
"Translate_info_default": {
"message": "Na této stránce můžete upravit výchozí prompt používaný pro překlad e-mailů."
},
"Translate_prompt_text_title": {
"message": "Aktuální text promptu"
},
"Translate_prompt_prefs_title": {
"message": "Možnosti překladu"
},
"prefs_OptionText_translate_auto": {
"message": "Automaticky překládat zprávy"
},
"prefs_OptionText_action_auto_disabled": {
"message": "Vypnuto"
},
"prefs_OptionText_action_auto_manual": {
"message": "Pouze manuální tlačítko"
},
"prefs_OptionText_action_auto_automatic": {
"message": "Při otevření e-mailu"
},
"prefs_OptionText_translate_auto_Info": {
"message": "Vyberte, kdy se mají zprávy překládat: vypnuto, pouze po kliknutí na tlačítko, nebo automaticky při otevření zprávy."
},
"prefs_OptionText_display_mode_inline": {
"message": "Panel zprávy (vloženě)"
},
"prefs_OptionText_display_mode_webchat": {
"message": "Okno chatu"
},
"prefs_OptionText_translate_max_display_length": {
"message": "Maximální délka zobrazeného překladu"
},
"prefs_OptionText_translate_max_display_length_Info": {
"message": "Maximální počet znaků zobrazených ve vloženém překladu. 0 = bez omezení. Při nastavení limitu bude delší text zkrácen s přepínačem „Zobrazit více“."
},
"translate_see_more": {
"message": "Zobrazit více"
},
"translate_see_less": {
"message": "Zobrazit méně"
},
"prefs_OptionText_translate_lang": {
"message": "Cílový jazyk překladu"
},
"prefs_OptionText_translate_lang_Info": {
"message": "Jazyk, do kterého se mají e-maily překládat. Pokud je prázdné, použije se výchozí nastavení jazyka."
},
"prefs_OptionText_translate_exclude_lang": {
"message": "Vyloučit jazyky"
},
"prefs_OptionText_translate_exclude_lang_Info": {
"message": "Čárkami oddělený seznam kódů jazyků (např. en, fr, it), které se mají při automatickém překladu přeskočit. Pokud je e-mail v jednom z těchto jazyků, nebude přeložen automaticky nebo se nezobrazí tlačítko pro manuální překlad."
},
"prefs_OptionText_Translate_main_prompt": {
"message": "Prompt popisující úkol překladu:"
},
"translate_generating": {
"message": "Překládání..."
},
"translate_click_to_generate": {
"message": "Klikněte zde pro překlad tohoto e-mailu"
},
"get_ai_translation": {
"message": "AI Překlad"
},
"translate_chatgpt_web_not_supported": {
"message": "Automatický překlad vyžaduje připojení přes API. Nakonfigurujte prosím API připojení v nastavení ThunderAI."
},
"translate_refresh": {
"message": "Obnovit překlad"
},
"translate_delete": {
"message": "Smazat překlad"
},
"translate_banner_title": {
"message": "AI Překlad"
},
"translate_error": {
"message": "Překlad se nezdařil."
},
"translate_no_language_configured": {
"message": "Jazyk překladu není nakonfigurován. Nastavte prosím jazyk v nastavení překladu nebo nastavte výchozí jazyk v obecném nastavení."
},
"translate_skipped": {
"message": "Překlad přeskočen: Jazyk je vyloučen nebo je shodný s cílovým jazykem."
},
"antispam_by": {
"message": "Antispam od"
},
"spam_badge_tooltip": {
"message": "Spamové skóre — kliknutím zobrazíte vysvětlení"
},
"summary_by": {
"message": "Shrnutí od"
},
"translate_by": {
"message": "Překlad od"
},
"prefs_THStats_1": {
"message": "Chcete přehledné statistiky o svých e-mailech?"
},
"prefs_THStats_2": {
"message": "Klikněte zde! Vyzkoušejte ThunderStats!"
},
"prefs_OptionText_chatgpt_win_pos_text": {
"message": "Pozice okna AI chatu"
},
"prefs_OptionText_chatgpt_win_top": {
"message": "Nahoře"
},
"prefs_OptionText_chatgpt_win_left": {
"message": "Vlevo"
},
"prefs_chatgpt_win_save_position": {
"message": "Automaticky uložit pozici okna při použití tlačítka zavřít."
},
"prefs_chatgpt_win_position_info": {
"message": "Ponechte prázdné pro použití výchozí pozice."
},
"prefs_OptionText_action_auto_batch": {
"message": "Při přijetí e-mailu"
},
"placeholder_string": {
"message": "Zástupný symbol"
},
"menu_order_title": {
"message": "Pořadí v nabídce"
},
"menu_order_popup_list_title": {
"message": "Vyskakovací nabídka"
},
"menu_order_context_list_title": {
"message": "Kontextová nabídka"
},
"menu_order_saved": {
"message": "Pořadí v nabídce uloženo!"
},
"menu_order_tab_reading": {
"message": "Čtení"
},
"menu_order_tab_composing": {
"message": "Psaní"
},
"menu_order_badge_default": {
"message": "Výchozí"
},
"menu_order_badge_special": {
"message": "Speciální"
},
"menu_order_badge_custom": {
"message": "Vlastní"
},
"menu_order_type_reading": {
"message": "Čtení"
},
"menu_order_type_composing": {
"message": "Psaní"
},
"menu_order_type_always": {
"message": "Vždy"
},
"menu_order_btn_label": {
"message": "Spravovat nastavení pořadí nabídek"
},
"menu_order_info": {
"message": "Položky seřaďte přetažením. Pomocí přepínače u každé položky ji zobrazíte nebo skryjete v dané nabídce."
},
"menu_order_active_items": {
"message": "Viditelné položky"
},
"menu_order_hidden_items": {
"message": "Skryté položky"
},
"menu_order_icon_label": {
"message": "Vyberte ikonu"
},
"menu_order_icon_none": {
"message": "(žádná)"
},
"prefs_storage_clear_done": {
"message": "Smazáno $COUNT$ záznamů.",
"placeholders": {
"count": {
"content": "$1"
}
}
},
"prompt_summarize_full_text": {
"message": "Vypracuj stručné shrnutí následujících e-mailů. Shrnutí musí mít maximálně 3 až 5 vět a vystihovat hlavní body. Piš v souvislých odstavcích bez odrážek, seznamů nebo markdown formátování:\n\n"
},
"prompt_summarize_email_template_full_text": {
"message": "Od: {%author%}\nKomu: {%recipients%}\nKopie: {%cc_list%}\nPředmět: {%mail_subject%}\nDatum: {%mail_datetime%}\nPřílohy:\n{%mail_attachments_info%}\n\nTělo zprávy:\n{%mail_text_body%}"
},
"prompt_summarize_email_separator_full_text": {
"message": "\n\n---------- DALŠÍ EMAIL ----------\n\n"
},
"prefs_OptionText_chatgpt_web_br_replace_info": {
"message": "Vezměte prosím na vědomí, že veškeré značky <br> v odpovědi AI budou nahrazeny zalomením řádku."
}
}

View file

@ -1,6 +1,6 @@
{
"extensionDescription": {
"message": "Verwenden Sie ChatGPT, Google Gemini, Claude oder Ollama, um Ihre E-Mails zu verbessern!",
"message": "Verwenden Sie ChatGPT, Google Gemini, Anthropic oder Ollama, um Ihre E-Mails zu verbessern!",
"description": "Description of the extension."
},
"menu_title": {
@ -24,6 +24,9 @@
"prompt_classify": {
"message": "Klassifizieren"
},
"prompt_summarize_this": {
"message": "Zusammenfassen"
},
"prompt_translate_this": {
"message": "Übersetzen"
},
@ -324,6 +327,9 @@
"chagpt_api_send_button": {
"message": "Modell wird verwendet"
},
"chagpt_api_connecting": {
"message": "Versuch, eine Verbindung zu OpenAI ChatGPT mit dem bereitgestellten API-Schlüssel herzustellen"
},
"Debug": {
"message": "Debuggen"
},
@ -357,6 +363,12 @@
"ollama_empty_model": {
"message": "Sie haben kein Modell für die Ollama API ausgewählt. Bitte wählen Sie eines auf der Optionsseite aus."
},
"ollama_api_connecting": {
"message": "Versuch, eine Verbindung zum Ollama-Lokalserver über den Host herzustellen"
},
"andModel": {
"message": "und Modell"
},
"error_connection_interrupted": {
"message": "Die Verbindung zum Server wurde unerwartet unterbrochen"
},
@ -387,6 +399,9 @@
"OpenAIComp_empty_model": {
"message": "Sie haben kein Modell für die OpenAI-kompatible API ausgewählt. Bitte wählen Sie eines auf der Optionsseite aus."
},
"OpenAIComp_api_connecting": {
"message": "Versuche, eine Verbindung zum OpenAI-kompatiblen lokalen API-Server über den Host herzustellen"
},
"OpenAIComp_api_request_failed": {
"message": "OpenAI-kompatible API-Anfrage fehlgeschlagen"
},
@ -408,6 +423,12 @@
"prefs_OptionText_dynamic_menu_force_enter_info": {
"message": "Wenn diese Option aktiviert ist, wird die Tastenkombination STRG+ALT+A den hervorgehobenen Prompt aus dem Menü automatisch senden. Andernfalls wird der Prompt-Name dem Benutzer angezeigt, und es ist ein weiterer Druck auf die Eingabetaste erforderlich, um ihn zu senden."
},
"prefs_OptionText_dynamic_menu_order_alphabet": {
"message": "Menü: Alphabetisch sortieren"
},
"prefs_OptionText_dynamic_menu_order_alphabet_info": {
"message": "Wenn diese Option aktiviert ist, werden die Prompts im Menü alphabetisch sortiert."
},
"prefs_OptionText_chatgpt_win_dims_info": {
"message": "Auf 0 setzen, wenn Sie die Fenstergröße nicht angeben möchten."
},
@ -477,6 +498,9 @@
"chatgpt_btn_model": {
"message": "Aktuelles Modell verwenden"
},
"SendingPrompt": {
"message": "Sende Eingabe..."
},
"AllowedValues": {
"message": "Erlaubte Werte"
},
@ -492,6 +516,9 @@
"prefs_OptionText_owl_warning": {
"message": "Es scheint, dass mindestens eines Ihrer Konten das Add-on Eule für Exchange verwendet. Es gibt ein bekanntes Problem zwischen Thunderbird und Eule, das derzeit behoben wird. Derzeit können Sie ThunderAI beim Verfassen von E-Mails verwenden, jedoch nicht beim Lesen."
},
"prefs_OptionText_chatgpt_web_model_tooltip": {
"message": "Klicken Sie auf einen Wert, um ihn festzulegen."
},
"prompt_reply_full_text": {
"message": "Antworten Sie auf die folgende E-Mail. Antworten Sie nur mit dem benötigten Text und ohne zusätzliche Kommentare oder andere Texte."
},
@ -516,8 +543,11 @@
"prompt_classify_full_text": {
"message": "Klassifizieren Sie den folgenden Text nach Höflichkeit, Wärme, Formalität, Bestimmtheit und Anstößigkeit und geben Sie einen Prozentsatz für jede Kategorie an. Antworten Sie nur mit der Kategorie und der Punktzahl ohne zusätzliche Kommentare oder andere Texte."
},
"prompt_summarize_this_full_text": {
"message": "Fassen Sie die folgende E-Mail in einer Liste mit Aufzählungspunkten zusammen."
},
"prompt_translate_this_full_text": {
"message": "Übersetzen Sie die unten stehende E-Mail in die Sprache {%thunderai_translate_lang%}.\n\nRegeln:\n- Übersetzen Sie sowohl den Betreff als auch den Textkörper.\n- Geben Sie das Ergebnis als JSON-Objekt mit drei Feldern zurück: \"subject\", \"body\" und \"status\".\n- Wenn die Übersetzung erstellt wurde, ist der Status gleich 1.\n- Wenn die E-Mail in einer dieser Sprachen \"{%thunderai_translate_exclude_lang%}\" oder in der Sprache {%thunderai_translate_lang%} verfasst ist, geben Sie eine leere Zeichenfolge für den Textkörper und den Betreff zurück und setzen Sie den Status auf -1.\n- Fügen Sie keine Erklärungen, Notizen oder Texte außerhalb des JSON-Objekts hinzu.\n\nE-Mail-Betreff: {%mail_subject%}\n\nE-Mail-Textkörper: {%mail_html_body%}\n\nGenerieren Sie die Antwort ausschließlich im JSON-Format. Die Ausgabe darf nur ein JSON-Objekt sein. Hier ist ein Beispiel für das zu verwendende JSON-Format:\n{\n\"subject\": \"subject translation\",\n\"body\": \"body translation\",\n\"status\": \"status result\"\n}"
"message": "Übersetzen Sie die folgende E-Mail in"
},
"prompt_this_full_text": {
"message": "Antworten Sie nur mit dem benötigten Text und ohne zusätzliche Kommentare oder andere Texte."
@ -529,7 +559,7 @@
"message": "Wenn aktiviert, wird ein Element im Menü hinzugefügt, um Tags auf E-Mails anzuwenden."
},
"prompt_add_tags": {
"message": "Tags hinzufügen"
"message": "Tags zu dieser E-Mail hinzufügen"
},
"prompt_add_tags_full_text": {
"message": "Analysiere den folgenden E-Mail-Text und erstelle ein JSON-Array mit Tags, die den Inhalt zusammenfassen. Verwende Themen, zentrale Schlagwörter und relevante Beschreibungen als Tags. Achte darauf, dass die Tags prägnant und inhaltlich relevant sind.\nE-Mail-Text: {%mail_text_body%}\nBerücksichtigen Sie die folgenden Details als Kontext:\n- Absender: {%author%}\n- Empfänger: {%recipients%}\n- CC-Liste: {%cc_list%}\n- E-Mail-Betreff: {%mail_subject%}\nErstelle die Tags auf Grundlage des E-Mail-Inhalts und Kontexts. Ignoriere unnötige Informationen oder unwichtige Details.\nGib die Antwort ausschließlich im JSON-Format aus. Die Ausgabe darf nur ein JSON-Array mit Tags enthalten ohne weiteren Kommentar oder Text. Hier ein Beispiel für das zu verwendende JSON-Format:\n{\n\"tags\": [\"tag1\", \"tag2\", \"tag3\", \"tag4\", \"tag5\"]\n}"
@ -651,6 +681,9 @@
"google_gemini_api_request_failed": {
"message": "Google Gemini API-Anfrage fehlgeschlagen"
},
"google_gemini_api_connecting": {
"message": "Versuch, eine Verbindung zu Google Gemini mit dem bereitgestellten API-Schlüssel herzustellen"
},
"google_gemini_empty_apikey": {
"message": "Sie haben keinen API-Schlüssel für die Google Gemini API hinzugefügt. Bitte fügen Sie einen auf der Optionsseite ein."
},
@ -679,7 +712,7 @@
"message": "Ein neues Kalenderevent hinzufügen"
},
"prompt_get_calendar_event_full_text": {
"message": "Extrahieren Sie alle relevanten Details, die erforderlich sind, um ein Kalenderevent aus dem folgenden Text zu erstellen. Die extrahierten Informationen sollten Folgendes enthalten:\n- Ereignistitel\n- Startdatum und -uhrzeit (einschließlich Zeitzone, falls angegeben)\n- Enddatum und -uhrzeit (einschließlich Zeitzone, falls angegeben)\n- Ganztägig (falls erwähnt)\n- Teilnehmer\nStellen Sie sicher, dass die Daten klar und konsistent formatiert sind, sodass sie direkt für die Erstellung eines Kalenderevents verwendet werden können.\nFalls relative Zeitangaben enthalten sind, beachten Sie, dass Datum und Uhrzeit der E-Mail \"{%mail_datetime%}\" sind. Berechnen Sie das Startdatum und die Startzeit basierend auf diesem Bezugspunkt. Falls das berechnete Startdatum und die Startzeit vor \"{%current_datetime%}\" liegen, berechnen Sie Startdatum und -zeit erneut, wobei Sie \"{%current_datetime%}\" als Grundlage verwenden.\nFalls keine Dauer angegeben ist, setzen Sie sie auf eine Stunde.\nDas sind die Teilnehmer: {%author%}, {%recipients%}, {%cc_list%}. Falls vorhanden, meine Adresse ausschließen: {%account_email_address%}.\nWenn es sich um ein ganztägiges Ereignis handelt, muss endDate ein Tag nach startDate liegen und die Zeit auf \"T000000\" eingestellt sein.\nFalls Sie eine oder mehrere der erforderlichen Informationen nicht erhalten können, antworten Sie mit einem leeren String.\nErstellen Sie eine Antwort ausschließlich im JSON-Format. Fügen Sie keinen zusätzlichen Text oder Erklärungen hinzu; geben Sie nur das JSON an. Verwenden Sie folgendes Format:\n{\n \"startDate\": \"YYYYMMDDTHHMMSS\",\n \"endDate\": \"YYYYMMDDTHHMMSS\",\n \"summary\": \"Zusammenfassung des Kalenderevents hier\",\n \"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nHier ist der Text: \"{%mail_text_body_or_selected%}\""
"message": "Extrahieren Sie alle relevanten Details, die erforderlich sind, um ein Kalenderevent aus dem folgenden Text zu erstellen. Die extrahierten Informationen sollten Folgendes enthalten:\n- Ereignistitel\n- Startdatum und -uhrzeit (einschließlich Zeitzone, falls angegeben)\n- Enddatum und -uhrzeit (einschließlich Zeitzone, falls angegeben)\n- Ganztägig (falls erwähnt)\n- Teilnehmer\nStellen Sie sicher, dass die Daten klar und konsistent formatiert sind, sodass sie direkt für die Erstellung eines Kalenderevents verwendet werden können.\nFalls relative Zeitangaben enthalten sind, beachten Sie, dass Datum und Uhrzeit der E-Mail \"{%mail_datetime%}\" sind. Berechnen Sie das Startdatum und die Startzeit basierend auf diesem Bezugspunkt. Falls das berechnete Startdatum und die Startzeit vor \"{%current_datetime%}\" liegen, berechnen Sie Startdatum und -zeit erneut, wobei Sie \"{%current_datetime%}\" als Grundlage verwenden.\nFalls keine Dauer angegeben ist, setzen Sie sie auf eine Stunde.\nDas sind die Teilnehmer: {%author%}, {%recipients%}, {%cc_list%}. Falls vorhanden, meine Adresse ausschließen: {%account_email_address%}.\nFalls Sie eine oder mehrere der erforderlichen Informationen nicht erhalten können, antworten Sie mit einem leeren String.\nErstellen Sie eine Antwort ausschließlich im JSON-Format. Fügen Sie keinen zusätzlichen Text oder Erklärungen hinzu; geben Sie nur das JSON an. Verwenden Sie folgendes Format:\n{\n \"startDate\": \"YYYYMMDDTHHMMSS\",\n \"endDate\": \"YYYYMMDDTHHMMSS\",\n \"summary\": \"Zusammenfassung des Kalenderevents hier\",\n \"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nHier ist der Text: \"{%selected_text%}\""
},
"prefs_OptionText_get_calendar_event": {
"message": "Ein neues Kalenderevent aus ausgewähltem Text hinzufügen"
@ -727,7 +760,7 @@
"message": "Wenn ausgewählt, wird die KI automatisch Tags zu neu empfangenen E-Mails hinzufügen."
},
"prefs_OptionText_add_tags_auto_only_inbox": {
"message": "Fügen Sie nur Tags zu E-Mails im Posteingang hinzu"
"message": "Tags nur zu E-Mails im Posteingang hinzufügen"
},
"prefs_OptionText_add_tags_auto_only_inbox_Info": {
"message": "Wenn ausgewählt, wird die KI nur Tags zu E-Mails hinzufügen, die im Posteingangsordner empfangen wurden."
@ -735,7 +768,7 @@
"placeholder_thunderai_def_sign": {
"message": "Standardsignatur wie in den ThunderAI-Optionen definiert."
},
"placeholder_thunderai_def_lang": {
"thunderai_def_lang": {
"message": "Standardsprache wie in den ThunderAI-Optionen definiert."
},
"prefs_OptionText_spamfilter": {
@ -754,7 +787,7 @@
"message": "Aktueller Aufforderungstext"
},
"prompt_spamfilter": {
"message": "Auf Spam prüfen"
"message": "Spam-E-Mails erkennen"
},
"SpamFilter_prompt_prefs_title": {
"message": "Spam-Filter-Optionen"
@ -792,15 +825,18 @@
"Report_Date": {
"message": "Berichtsdatum"
},
"yes_string": {
"spamfilter_moved": {
"message": "Ja"
},
"no_string": {
"spamfilter_not_moved": {
"message": "Nein"
},
"spamfilter_threshold_too_low": {
"message": "Der Spam-Schwellenwert ist zu niedrig! Sie werden wahrscheinlich zu viele E-Mails als Spam markieren!"
},
"sparks_not_installed": {
"message": "ThunderAI Sparks nicht installiert!"
},
"prefs_OptionText_add_tags_auto_force_existing_Info": {
"message": "Wenn aktiviert, fügt die KI nur vorhandene Tags hinzu und erstellt keine neuen Tags."
},
@ -808,20 +844,32 @@
"message": "Vorhandene Tags erzwingen"
},
"spamfilter_no_reports": {
"message": "Es wurden noch keine Nachrichten auf Spam geprüft. Hier finden Sie eine Liste der letzten 100 Spam-Berichte."
"message": "Es wurden noch keine Nachrichten auf Spam überprüft. Hier finden Sie eine Liste der letzten 100 Spam-Berichte nur für die aktuelle Sitzung."
},
"prefs_OptionText_spamfilter_Info": {
"message": "Wenn ausgewählt, wird ThunderAI Spam-E-Mails automatisch in den Spam-Ordner verschieben."
},
"prompt_spamfilter_full_text": {
"message": "Analysieren Sie die folgende E-Mail und bestimmen Sie, ob es sich um Spam handelt oder nicht. Berücksichtigen Sie Faktoren wie verdächtige Schlüsselwörter, übermäßige Werbesprache, irreführende Betreffzeilen, Anfragen nach persönlichen Informationen und ungewöhnliche Absenderadressen.\nGeben Sie einen Wert von 0 (kein Spam) bis 100 (Spam) und eine Erklärung mit maximal 10 Wörtern an.\nFalls Nachrichtendaten fehlen, setzen Sie den Wert auf 0 (kein Spam) und geben Sie den Grund an.\nGenerieren Sie die Antwort ausschließlich im JSON-Format. Fügen Sie keinen zusätzlichen Text oder Erklärungen hinzu; liefern Sie nur das JSON. Hier ist das zu verwendende Format:\n{\n\"explanation\": \"Kurze Erklärung Ihrer Begründung\",\n\"spamValue\": <Ganzzahl von 0 bis 100>\n}\nHier sind die Mail-Informationen:\nAbsender: \"{%author%}\"\nBetreff: \"{%mail_subject%}\"\nHTML-Inhalt: \"{%mail_html_body%}\""
"message": "Analysieren Sie die folgende E-Mail und bestimmen Sie, ob es sich um Spam handelt oder nicht. Berücksichtigen Sie Faktoren wie verdächtige Schlüsselwörter, übermäßige Werbesprache, irreführende Betreffzeilen, Anfragen nach persönlichen Informationen und ungewöhnliche Absenderadressen.\nGeben Sie einen Wert von 0 (kein Spam) bis 100 (Spam) und eine Erklärung mit maximal 10 Wörtern an.\nFalls Nachrichtendaten fehlen, setzen Sie den Wert auf 0 (kein Spam) und geben Sie den Grund an.\nGenerieren Sie die Antwort ausschließlich im JSON-Format. Fügen Sie keinen zusätzlichen Text oder Erklärungen hinzu; liefern Sie nur das JSON. Hier ist das zu verwendende Format:\n{\n\"spamValue\": <Ganzzahl von 0 bis 100>,\n\"explanation\": \"Kurze Erklärung Ihrer Begründung\"\n}\nHier sind die Mail-Informationen:\nAbsender: \"{%author%}\"\nBetreff: \"{%mail_subject%}\"\nHTML-Inhalt: \"{%mail_html_body%}\""
},
"prefs_OptionText_openai_comp_info_remote": {
"message": "Hier können Sie auch die Adresse eines entfernten Servers eingeben."
},
"prefs_OptionText_add_tags_context_menu_Info": {
"message": "Wenn aktiviert, wird beim Rechtsklick auf eine E-Mail in der Nachrichtenliste der Eintrag \"Tags hinzufügen\" angezeigt."
},
"prefs_OptionText_spamfilter_context_menu_Info": {
"message": "Wenn aktiviert, wird beim Rechtsklick auf eine E-Mail in der Nachrichtenliste der Eintrag \"Auf Spam analysieren\" angezeigt."
},
"prefs_OptionText_calendar_enforce_timezone": {
"message": "Erzwinge die angegebene Zeitzone"
},
"context_menu_mzta-add-tags": {
"message": "Tags hinzufügen"
},
"context_menu_mzta-spamfilter": {
"message": "Auf Spam analysieren"
},
"noActiveCalendar": {
"message": "Kein bearbeitbarer Kalender gefunden!"
},
@ -834,6 +882,12 @@
"prefs_OptionText_calendar_enforce_timezone_Info": {
"message": "Wenn aktiviert, wird die angegebene Zeitzone für die Kalendereinträge und Aufgaben erzwungen."
},
"prefs_OptionText_add_tags_context_menu": {
"message": "\"Tags hinzufügen\" im Kontextmenü anzeigen"
},
"prefs_OptionText_spamfilter_context_menu": {
"message": "\"Auf Spam analysieren\" im Kontextmenü anzeigen"
},
"apiwebchat_you": {
"message": "Du"
},
@ -876,6 +930,12 @@
"CORS_alternative_1": {
"message": "Probleme beim Einrichten von CORS?"
},
"CORS_alternative_2": {
"message": "Drücke den Button unten, um die Berechtigung <all_urls> zu erteilen und CORS-Probleme zu vermeiden."
},
"CORS_give_allurls_perm": {
"message": "Gib die Berechtigung für \"alle URLs\""
},
"remember_CORS": {
"message": "Denk daran, du musst die CORS-Einstellungen auf dem Server konfigurieren!"
},
@ -979,7 +1039,7 @@
"message": "Jede Änderung wird sofort gespeichert."
},
"AccountSelector_Spamfilter": {
"message": "Wähle die Konten aus, bei denen der automatische Spamfilter aktiviert ist"
"message": "Wähle die Konten aus, bei denen der Spamfilter aktiviert ist"
},
"prompt_proofread_this": {
"message": "Korrigiere diese E-Mail"
@ -1012,22 +1072,22 @@
"message": "Bitte korrigieren Sie die folgende E-Mail und beheben Sie alle Rechtschreib- oder Grammatikfehler. Antworten Sie nur mit dem korrigierten Text, ohne zusätzliche Kommentare oder sonstigen Text.\n\n„{%mail_typed_text%}“"
},
"prefs_Connection_type_Anthropic_API": {
"message": "Claude API"
"message": "Anthropic API"
},
"anthropic_empty_version": {
"message": "Sie haben keinen Versionsstring für die Claude-API hinzugefügt. Bitte fügen Sie einen auf der Optionsseite ein."
"message": "Sie haben keinen Versionsstring für die Anthropic-API hinzugefügt. Bitte fügen Sie einen auf der Optionsseite ein."
},
"Anthropic_Models_Error_fetching": {
"message": "Fehler beim Abrufen der Claude-Modelle"
"message": "Fehler beim Abrufen der Anthropic-Modelle"
},
"prefs_Anthropic_API_Key": {
"message": "Claude API-Schlüssel"
"message": "Anthropic API-Schlüssel"
},
"prefs_OptionText_anthropic_max_tokens_Info": {
"message": "Die maximale Anzahl von Tokens, die in der Vervollständigung generiert werden soll. Die Anzahl der Tokens Ihres Prompts plus max_tokens darf die Kontextlänge des Modells nicht überschreiten."
},
"anthropic_api_request_failed": {
"message": "Anfrage an die Claude-API fehlgeschlagen"
"message": "Anfrage an die Anthropic-API fehlgeschlagen"
},
"_api_connecting": {
"message": "Verbindungsversuch zu $api_string$ mit der folgenden Konfiguration...",
@ -1038,31 +1098,28 @@
}
},
"Anthropic_Models_Fetch": {
"message": "Claude-Modellliste aktualisieren"
"message": "Anthropic-Modellliste aktualisieren"
},
"Custom": {
"message": "Benutzerdefiniert"
},
"Anthropic_Version": {
"message": "Claude-API-Version"
"message": "Anthropic-API-Version"
},
"prefs_OptionText_anthropic_max_tokens": {
"message": "Maximale Anzahl an Tokens"
"message": "Maximale Anzahl an Tokens für Anthropic"
},
"anthropic_empty_apikey": {
"message": "Sie haben keinen API-Schlüssel für die Claude-API hinzugefügt. Bitte fügen Sie einen auf der Optionsseite ein."
"message": "Sie haben keinen API-Schlüssel für die Anthropic-API hinzugefügt. Bitte fügen Sie einen auf der Optionsseite ein."
},
"ask_anthropic_api_permission_1": {
"message": "Um die Claude-API-Integration zu verwenden, müssen Sie die erforderliche Berechtigung erteilen."
},
"ask_openai_api_permission_1": {
"message": "Um die OpenAI-API-Integration zu verwenden, müssen Sie die erforderliche Berechtigung erteilen."
"message": "Um die Anthropic-API-Integration zu verwenden, müssen Sie die erforderliche Berechtigung erteilen."
},
"Anthropic_Models": {
"message": "Claude Modelle"
"message": "Anthropic Modelle"
},
"anthropic_empty_model": {
"message": "Sie haben kein Modell für die Claude-API ausgewählt. Bitte wählen Sie eines auf der Optionsseite aus."
"message": "Sie haben kein Modell für die Anthropic-API ausgewählt. Bitte wählen Sie eines auf der Optionsseite aus."
},
"_api_connecting_model": {
"message": "Modell",
@ -1190,7 +1247,7 @@
"message": "Antworten Sie auf die folgende E-Mail „{%mail_text_body%}“. {%additional_text%}. Antworten Sie nur mit dem erforderlichen Text und ohne zusätzliche Kommentare oder anderen Text."
},
"prompt_reply_custom_command": {
"message": "Mit Befehl antworten..."
"message": "Mit Befehl antworten"
},
"prefs_OptionText_chatgpt_web_br_replace_info": {
"message": "Bitte beachten Sie, dass alle <br>-Tags in der Antwort der KI durch Zeilenumbrüche ersetzt werden."
@ -1200,615 +1257,5 @@
},
"prefs_OpenAIComp_ClearModelsList": {
"message": "Modellliste löschen"
},
"prefs_OptionText_add_tags_auto_uselist": {
"message": "Verwenden Sie nur diese Tags"
},
"prefs_OptionText_add_tags_auto_uselist_Info": {
"message": "Wenn diese Option aktiviert ist, fügt die KI nur Tags aus der folgenden Liste hinzu."
},
"prefs_OptionText_add_tags_auto_uselist_list_Info": {
"message": "Die Liste muss mindestens einen Tag enthalten. Fügen Sie pro Zeile einen Tag hinzu oder trennen Sie sie durch ein Komma."
},
"prompt_add_tags_use_list": {
"message": "Verwenden Sie nur die Tags in dieser durch Kommas getrennten Liste"
},
"prefs_OptionText_add_tags_use_specific_integration_Info": {
"message": "Wenn diese Option aktiviert ist, werden das unten angegebene Modell und die API zum Hinzufügen von Tags zu E-Mails verwendet, unabhängig von der in der ThunderAI-Optionsseite gewählten Einstellung."
},
"placeholder_mail_attachments_info": {
"message": "Informationen zu den Anhängen in der E-Mail"
},
"prefs_OptionText_use_specific_integration": {
"message": "Spezifisches Modell und API verwenden"
},
"prefs_OptionText_spamfilter_use_specific_integration_Info": {
"message": "Wenn diese Option aktiviert ist, werden das unten angegebene Modell und die API für den Spamfilter verwendet, unabhängig von der in der ThunderAI-Optionsseite gewählten Einstellung."
},
"chatgpt_click_force_completion": {
"message": "Es scheint nicht möglich zu sein festzustellen, ob ChatGPT fertig ist. Klicken Sie hier, um den Abschluss des Auftrags zu erzwingen."
},
"warn_API_needed": {
"message": "Um diese Funktion zu nutzen, benötigen Sie eine API-Integration anstelle der ChatGPT-Webintegration. Sie können eine spezifische API auf der Einstellungsseite der Funktion definieren, indem Sie zuerst das obige Kontrollkästchen aktivieren und dann auf die Schaltfläche links klicken."
},
"prefs_google_gemini_thinking_budget": {
"message": "Thinking Budget"
},
"prefs_google_gemini_thinking_budget_Info": {
"message": "Legen Sie die Anzahl der Token fest, die für das Denken verwendet werden sollen. Lassen Sie dieses Feld leer, wenn das ausgewählte Modell Denken nicht unterstützt oder wenn Sie die Standardmethode verwenden möchten. Geben Sie 0 ein, um das Denken zu deaktivieren, oder -1, um dynamisches Denken zu aktivieren."
},
"SelectAll": {
"message": "Alles auswählen"
},
"DeselectAll": {
"message": "Alles abwählen"
},
"Anthropic_System_Prompt": {
"message": "System Prompt"
},
"Anthropic_System_Prompt_Info": {
"message": "Du kannst die Leistung von Claude verbessern, indem du ein System Prompt verwendest, um ihm eine Rolle zuzuweisen. Diese Technik, bekannt als Rollenvorgabe, ist die effektivste Methode, um System Prompts mit Claude zu nutzen. Die richtige Rolle kann Claude von einem allgemeinen Assistenten in einen virtuellen Fachexperten verwandeln."
},
"Optional_Permission_Denied_Model_Fetching": {
"message": "Sie haben die optionale Berechtigung verweigert, die zum Abrufen der Modelle für diese Integration erforderlich ist."
},
"prompt_string": {
"message": "Prompt"
},
"placeholder_mail_headers": {
"message": "E-Mail-Kopfzeilen"
},
"reset": {
"message": "Reset"
},
"prefs_chatgpt_api_temperature_Info": {
"message": "Welche Sampling-Temperatur soll verwendet werden (zwischen 0 und 2)? Höhere Werte wie 0,8 machen die Ausgabe zufälliger, während niedrigere Werte wie 0,2 sie fokussierter und deterministischer machen."
},
"prefs_ollama_temperature_Info": {
"message": "Die Temperatur des Modells. Eine Erhöhung der Temperatur führt dazu, dass das Modell kreativer antwortet. Der Standardwert ist 0,8. Es wird empfohlen, Werte zwischen 0 und 1 zu verwenden."
},
"prefs_api_temperature": {
"message": "Temperatur"
},
"prefs_openai_comp_temperature_Info": {
"message": "Welche Sampling-Temperatur verwendet werden soll (zwischen 0 und 2). Höhere Werte wie 0,8 machen die Ausgabe zufälliger, während niedrigere Werte wie 0,2 sie fokussierter und deterministischer machen."
},
"prefs_google_gemini_temperature_Info": {
"message": "Dieser Parameter muss eine Zahl zwischen 0,0 und 2,0 sein. Er steuert den Zufallsgrad der Ausgabe. Der Standardwert variiert je nach Modell. Lassen Sie das Feld leer, um den Parameter im API-Aufruf nicht festzulegen."
},
"prefs_anthropic_temperature_Info": {
"message": "Grad der Zufälligkeit in der Antwort. Der Standardwert ist 1,0. Der Bereich liegt zwischen 0,0 und 1,0. Verwenden Sie eine Temperatur näher an 0,0 für analytische Aufgaben oder Multiple-Choice-Fragen und näher an 1,0 für kreative und generative Aufgaben. Beachten Sie, dass die Ergebnisse selbst bei einer Temperatur von 0,0 nicht vollständig deterministisch sind."
},
"placeholder_mail_text_body_or_selected": {
"message": "E-Mail-Inhalt oder markierter Text"
},
"placeholder_mail_html_body_or_selected": {
"message": "E-Mail-Inhalt oder markiertes HTML"
},
"prefs_OptionText_chatgpt_web_load_wait_time": {
"message": "Wartezeit für das Laden der Seite"
},
"prefs_OptionText_chatgpt_web_load_wait_time_info": {
"message": "Wartezeit in Millisekunden, bis die ChatGPT-Seite geladen ist, bevor zusätzliche Inhalte geladen werden. Der Standardwert beträgt 1000 ms. Falls un Custom GPT oder ein Project definiert ist, werden diesem Wert zusätzliche 1000 ms hinzugefügt."
},
"prompt_get_calendar_event_from_clipboard": {
"message": "Termin aus Zwischenablage erstellen"
},
"clipboard_read_error": {
"message": "Zwischenablage konnte nicht gelesen werden. Bitte Berechtigungen prüfen."
},
"clipboard_empty_error": {
"message": "Zwischenablage leer. Bitte kopieren Sie zuerst einen Text."
},
"clipboard_permission_denied": {
"message": "Zugriff auf die Zwischenablage wurde verweigert. Bitte aktiviere die Funktion in den Einstellungen erneut, um die Berechtigung zu erteilen."
},
"clipboard_permission_error": {
"message": "Fehler bei der Berechtigungsanfrage. Bitte erneut versuchen."
},
"prefs_OptionText_get_calendar_event_from_clipboard": {
"message": "Termin aus Zwischenablage abrufen"
},
"prefs_OptionText_get_calendar_event_from_clipboard_Info": {
"message": "Zusätzlichen Menüpunkt einblenden: Kalendertermine aus Zwischenablagen-Text erstellen."
},
"Summarize_prompt_prefs_title": {
"message": "Zusammenfassungseinstellungen"
},
"prompt_summarize": {
"message": "Zusammenfassen"
},
"prompt_summarize_full_text": {
"message": "Geben Sie eine prägnante Zusammenfassung der folgenden E-Mail-Nachricht(en) an. Die Zusammenfassung sollte maximal 3 bis 5 Sätze umfassen und die wesentlichen Punkte enthalten. Schreiben Sie in einfachen Absätzen ohne Aufzählungszeichen, Listen oder Markdown-Formatierung.\n\n"
},
"prompt_summarize_email_template": {
"message": "Vorlage für E-Mail-Zusammenfassung"
},
"prompt_summarize_email_template_full_text": {
"message": "Von: {%author%}\nAn: {%recipients%}\nCC: {%cc_list%}\nBetreff: {%mail_subject%}\nDatum: {%mail_datetime%}\nAnhänge:\n{%mail_attachments_info%}\n\nInhalt:\n{%mail_text_body%}"
},
"prompt_summarize_email_separator": {
"message": "E-Mail-Separator"
},
"prompt_summarize_email_separator_full_text": {
"message": "\n\n---------- NÄCHSTE E-MAIL ----------\n\n"
},
"prefs_OptionText_Summarize_infoline2": {
"message": "Sie können den Prompt nach Belieben anpassen: Das erste Feld ist der Haupt-Prompt, das zweite Feld ist die Vorlage für eine einzelne E-Mail. Die Liste der E-Mails wird an den Haupt-Prompt angehängt. Die E-Mails werden durch das im dritten Feld angegebene Trennzeichen voneinander getrennt."
},
"prefs_OptionText_Summarize_main_prompt": {
"message": "Der Haupt-Prompt, der die Aufgabe für alle ausgewählten E-Mails beschreibt:"
},
"prefs_OptionText_Summarize_email_template": {
"message": "Die Vorlage für eine einzelne E-Mail:"
},
"prefs_OptionText_Summarize_email_separator": {
"message": "Das Trennzeichen zwischen E-Mails:"
},
"prefs_OptionText_get_calendar_event_use_specific_integration_Info": {
"message": "Wenn aktiviert, werden das unten angegebene Modell und die API zum Erstellen von Kalenderereignissen verwendet, unabhängig von der Auswahl auf der ThunderAI-Optionsseite."
},
"prefs_OptionText_summarize": {
"message": "E-Mail zusammenfassen"
},
"prefs_OptionText_summarize_use_specific_integration_Info": {
"message": "Wenn aktiviert, werden das unten angegebene Modell und die API zum Zusammenfassen von E-Mails verwendet, unabhängig von der Auswahl auf der ThunderAI-Optionsseite."
},
"prefs_OptionText_summarize_Info": {
"message": "Wenn aktiviert, wird dem Kontextmenü eine Option zum Zusammenfassen von E-Mails hinzugefügt."
},
"prefs_OptionText_btnManageSummarizeInfo": {
"message": "Zusammenfassung verwalten"
},
"Summarize_PageTitle": {
"message": "Zusammenfassungseinstellungen verwalten"
},
"Summarize_info_default": {
"message": "Auf dieser Seite können Sie den Standard-Prompt für die Zusammenfassung von E-Mails bearbeiten."
},
"Summarize_prompt_text_title": {
"message": "Aktueller Prompt-Text"
},
"prefs_OptionText_spamfilter_show_msg_panel": {
"message": "Spam-Bericht-Panel anzeigen"
},
"prefs_OptionText_spamfilter_show_msg_panel_Info": {
"message": "Wenn aktiviert, wird oben über der Nachricht ein Panel mit dem Spam-Bericht angezeigt."
},
"Spam": {
"message": "Spam"
},
"Valid": {
"message": "Zulässig"
},
"CORS_alternative_2_new": {
"message": "Klicken Sie auf die untenstehende Schaltfläche, um dem aktuellen Host die Berechtigung zu erteilen und CORS-Probleme zu vermeiden."
},
"CORS_give_host_perm": {
"message": "Berechtigung für den aktuellen Host erteilen"
},
"CORS_localhost_warn": {
"message": "Wenn Sie localhost oder 127.0.0.1 verwenden, da der KI-Server auf Ihrem PC gehostet wird, ist die Berechtigung <all_urls> erforderlich."
},
"customPrompts_export_include_api_settings": {
"message": "Möchten Sie die API-Einstellungen in den Export einbeziehen? Bitte beachten Sie, dass auch der API-Schlüssel in der Datei gespeichert wird!"
},
"prefs_OptionText_calendar_no_selection": {
"message": "Nicht zur Textauswahl auffordern"
},
"prefs_OptionText_calendar_no_selection_Info": {
"message": "Wenn aktiviert, ist keine Textauswahl erforderlich. Der gesamte Nachrichtentext wird verwendet, um das Kalenderereignis zu erstellen."
},
"customPrompts_btnCopy": {
"message": "Kopieren"
},
"copy_text": {
"message": "kopie"
},
"spam_check_in_progress": {
"message": "Spam-Prüfung läuft..."
},
"prefs_THStats_1": {
"message": "Möchtest du schöne Statistiken zu deinen E-Mails erhalten?"
},
"prefs_THStats_2": {
"message": "Hier klicken! Probiere ThunderStats aus!"
},
"prefs_OptionText_calendar_no_selection_missing_placeholder": {
"message": "Der Prompt muss den Platzhalter {%mail_text_body_or_selected%} oder {%mail_html_body_or_selected%} enthalten, um diese Option zu aktivieren. Bitte fügen Sie einen dieser Platzhalter zum Prompt hinzu oder setzen Sie ihn auf den Standardwert zurück."
},
"antispam_by": {
"message": "Antispam von"
},
"prefs_doc_title": {
"message": "Dokumentation"
},
"prefs_doc_setup_guide": {
"message": "Einrichtungsleitfäden"
},
"prefs_doc_custom_prompt_tutorial": {
"message": "Tutorial für benutzerdefinierte Prompts"
},
"prefs_doc_open_welcome": {
"message": "Die Willkommensseite öffnen"
},
"prefs_OptionText_chatgpt_win_pos_text": {
"message": "Position des KI-Chatfensters"
},
"prefs_OptionText_chatgpt_win_top": {
"message": "Oben"
},
"prefs_OptionText_chatgpt_win_left": {
"message": "Links"
},
"prefs_chatgpt_win_save_position": {
"message": "Fensterposition beim Schließen automatisch speichern."
},
"prefs_chatgpt_win_position_info": {
"message": "Leer lassen, um die Standardposition zu verwenden."
},
"show_in": {
"message": "Anzeigen in"
},
"show_in_popup": {
"message": "Nur Popup"
},
"show_in_context": {
"message": "Nur Kontextmenü"
},
"show_in_both": {
"message": "Beide"
},
"webchat_save_as_summary": {
"message": "Als Zusammenfassung speichern"
},
"prefs_storage_title": {
"message": "Speicher"
},
"prefs_storage_info": {
"message": "Der Speicher wird verwendet, um Informationen über Spam-Scores, Zusammenfassungen und Übersetzungen jeder Nachricht zu speichern."
},
"prefs_storage_size": {
"message": "Speichergröße"
},
"prefs_storage_clear_button": {
"message": "Speicher leeren"
},
"prefs_storage_clear_confirm": {
"message": "Sind Sie sicher, dass Sie alle gespeicherten Daten (Zusammenfassungen, Spam-Berichte, Übersetzungen) löschen möchten? Diese Aktion kann nicht rückgängig gemacht werden."
},
"prefs_storage_clear_done": {
"message": "$COUNT$ Datensätze entfernt.",
"placeholders": {
"count": {
"content": "$1"
}
}
},
"prefsInfoDesc_7": {
"message": "Um die Google Gemini API zu nutzen, benötigen Sie einen Google Gemini API-Key und müssen ein Modell auswählen."
},
"prefsInfoDesc_8": {
"message": "Um die Claude API zu nutzen, benötigen Sie einen Anthropic Claude API-Key und müssen ein Modell auswählen."
},
"placeholder_mail_full_headers": {
"message": "Alle E-Mail-Header"
},
"prefs_OptionText_hide_thinking": {
"message": "Denk-Block standardmäßig einklappen"
},
"prefs_OptionText_hide_thinking_info": {
"message": "Steuert den Anfangszustand des Denk-Blocks, der über der Antwort angezeigt wird. Wenn aktiviert, ist der Block standardmäßig eingeklappt und kann per Klick geöffnet werden. Wenn deaktiviert, ist der Block standardmäßig geöffnet und kann per Klick eingeklappt werden. Der Inhalt des Denk-Prozesses bleibt dabei stets erhalten."
},
"prefs_OptionText_thinking_summary": {
"message": "Denkt nach"
},
"placeholder_thunderai_translate_lang": {
"message": "Die Sprache, die für E-Mail-Übersetzungen verwendet werden soll."
},
"placeholder_thunderai_translate_exclude_lang": {
"message": "Sprachcodes, die nicht übersetzt werden sollen."
},
"SpamFilter_skip_addresses_title": {
"message": "Ausschlussliste für E-Mail-Adressen"
},
"SpamFilter_skip_addresses_infoline": {
"message": "E-Mails von diesen Adressen werden nicht zur Spam-Filterung an die KI gesendet."
},
"SpamFilter_skip_addresses_infoline2": {
"message": "Geben Sie eine E-Mail-Adresse pro Zeile ein oder trennen Sie diese durch Kommas."
},
"spamfilter_skip_addresses_explanation": {
"message": "Der Absender befindet sich auf der Antispam-Ausschlussliste."
},
"prefs_OptionText_spamfilter_skip_addressbook": {
"message": "Adressbuch-Kontakte überspringen"
},
"prefs_OptionText_spamfilter_skip_addressbook_Info": {
"message": "Wenn aktiviert, werden E-Mails von Absendern in Ihren Adressbüchern nicht zur Spam-Prüfung an die KI gesendet."
},
"spamfilter_skip_addressbook_explanation": {
"message": "Der Absender ist ein Kontakt im Adressbuch."
},
"addressbook_permission_denied": {
"message": "Der Zugriff auf das Adressbuch wurde verweigert. Bitte aktivieren Sie die Funktion erneut, um die Berechtigung zu erteilen."
},
"addressbook_permission_error": {
"message": "Fehler beim Anfordern der Adressbuch-Berechtigung. Bitte versuchen Sie es erneut."
},
"apiwebchat_done": {
"message": "Fertig!"
},
"prefs_OptionText_anthropic_extended_thinking_budget": {
"message": "Budget für erweitertes Denken (Tokens)"
},
"prefs_OptionText_anthropic_extended_thinking_budget_Info": {
"message": "Maximale Anzahl an Tokens, die das Modell für erweitertes Denken (Extended Thinking) verwenden darf. Auf 0 setzen, um das erweiterte Denken zu deaktivieren. Wenn diese Funktion aktiviert ist, wird der Temperature-Wert von der Claude-API ignoriert."
},
"prefs_ollama_format_json": {
"message": "JSON-Ausgabe erzwingen"
},
"prefs_ollama_format_json_Info": {
"message": "Wenn aktiviert, wird Ollama gezwungen, eine gültige JSON-Antwort zurückzugeben (nur für unterstützte Modelle)."
},
"prefs_specific_api_indicator": {
"message": "Verwendet $1",
"placeholders": {
"1": {
"content": "$1"
}
}
},
"prefs_OptionText_auto_summary": {
"message": "Automatische KI-Zusammenfassung für Nachrichtenvorschauen aktivieren"
},
"prefs_OptionText_auto_summary_Info": {
"message": "Falls aktiviert, erstellt und zeigt ThunderAI automatisch KI-Zusammenfassungen oberhalb von E-Mails an, sobald diese geöffnet werden. Beachten Sie, dass hierbei alle von Ihnen aufgerufenen Nachrichten sofort an den konfigurierten KI-Dienst gesendet werden."
},
"auto_summary_title": {
"message": "ThunderAI Zusammenfassung"
},
"auto_summary_generating": {
"message": "KI-Zusammenfassung wird generiert..."
},
"auto_summary_failed": {
"message": "KI-Zusammenfassung konnte nicht generiert werden. Bitte Einstellungen prüfen."
},
"prefs_OptionText_summarize_auto": {
"message": "Nachrichten automatisch zusammenfassen"
},
"prefs_OptionText_summarize_auto_Info": {
"message": "Wählen Sie aus, ob beim Anzeigen von Nachrichten automatisch Zusammenfassungen erstellt werden sollen. Erfordert eine API-basierte Verbindung (kein ChatGPT Web)."
},
"prefs_OptionText_summarize_display_mode": {
"message": "Zusammenfassung anzeigen in"
},
"prefs_OptionText_summarize_display_mode_Info": {
"message": "Wählen Sie aus, wo das Ergebnis der Zusammenfassung angezeigt werden soll. Der Inline-Modus zeigt ein Zusammenfassungs-Banner direkt im Nachrichtenbereich an. Der Chat-Fenster-Modus öffnet das KI-Chat-Fenster."
},
"prefs_OptionText_summarize_max_display_length": {
"message": "Maximale Anzeigelänge"
},
"prefs_OptionText_summarize_max_display_length_Info": {
"message": "Maximale Anzahl der Zeichen in der Inline-Zusammenfassung. 0 für kein Limit."
},
"prefs_OptionText_summarize_strip_formatting": {
"message": "Formatierung entfernen"
},
"prefs_OptionText_summarize_strip_formatting_Info": {
"message": "Entfernt HTML und Markdown aus der Zusammenfassung, um nur reinen Text anzuzeigen."
},
"summarize_see_more": {
"message": "Mehr sehen"
},
"summarize_see_less": {
"message": "Weniger sehen"
},
"summarize_title": {
"message": "ThunderAI Überblick"
},
"get_ai_summary": {
"message": "KI-Zusammenfassung"
},
"summarize_collapse": {
"message": "Zusammenfassung einklappen"
},
"summarize_generating": {
"message": "Zusammenfassung wird generiert..."
},
"summarize_error": {
"message": "Zusammenfassung konnte nicht erstellt werden"
},
"summarize_click_to_generate": {
"message": "Klicken Sie hier, um eine Zusammenfassung zu erstellen"
},
"summarize_chatgpt_web_not_supported": {
"message": "Die automatische Zusammenfassung erfordert eine API-basierte Verbindung. Bitte konfigurieren Sie eine API-Verbindung in den ThunderAI-Einstellungen."
},
"summarize_refresh": {
"message": "Zusammenfassung aktualisieren"
},
"spamfilter_refresh": {
"message": "Spam-Bericht aktualisieren"
},
"spamfilter_delete": {
"message": "Spam-Bericht löschen"
},
"summarize_delete": {
"message": "Zusammenfassung löschen"
},
"generic_error_dismiss": {
"message": "Verwerfen"
},
"prefs_OptionText_translate": {
"message": "E-Mail übersetzen"
},
"prefs_OptionText_translate_use_specific_integration_Info": {
"message": "Wenn aktiviert, werden das unten angegebene Modell und die API für Übersetzungen verwendet."
},
"prefs_OptionText_translate_Info": {
"message": "Wenn aktiviert, wird eine Schaltfläche zum Übersetzen im Nachrichtentext hinzugefügt."
},
"prefs_OptionText_btnManageTranslateInfo": {
"message": "Übersetzungseinstellungen verwalten"
},
"Translate_PageTitle": {
"message": "Übersetzungseinstellungen verwalten"
},
"Translate_info_default": {
"message": "Auf dieser Seite können Sie den Standard-Prompt für Übersetzungen bearbeiten."
},
"Translate_prompt_text_title": {
"message": "Aktueller Prompt-Text"
},
"Translate_prompt_prefs_title": {
"message": "Übersetzungsoptionen"
},
"prefs_OptionText_translate_auto": {
"message": "Nachrichten automatisch übersetzen"
},
"prefs_OptionText_action_auto_disabled": {
"message": "Deaktiviert"
},
"prefs_OptionText_action_auto_manual": {
"message": "Nur manuelle Schaltfläche"
},
"prefs_OptionText_action_auto_automatic": {
"message": "Wenn die E-Mail geöffnet wird"
},
"prefs_OptionText_translate_auto_Info": {
"message": "Wählen Sie aus, wann Nachrichten übersetzt werden sollen: deaktiviert, nur beim Klicken auf die Schaltfläche oder automatisch beim Öffnen einer Nachricht."
},
"prefs_OptionText_display_mode_inline": {
"message": "Nachrichtenbereich (inline)"
},
"prefs_OptionText_display_mode_webchat": {
"message": "Chat-Fenster"
},
"prefs_OptionText_translate_max_display_length": {
"message": "Maximale Länge der Anzeige"
},
"prefs_OptionText_translate_max_display_length_Info": {
"message": "Maximale Anzahl der Zeichen, die in der Inline-Übersetzung angezeigt werden. 0 = kein Limit. Wenn festgelegt, wird längerer Text gekürzt und mit einer „Mehr anzeigen“-Schaltfläche versehen."
},
"translate_see_more": {
"message": "Mehr sehen"
},
"translate_see_less": {
"message": "Weniger sehen"
},
"prefs_OptionText_translate_lang": {
"message": "Zielsprache für Übersetzungen"
},
"prefs_OptionText_translate_lang_Info": {
"message": "Sprache, in die E-Mails übersetzt werden sollen. Wenn das Feld leer ist, wird die Standardspracheinstellung verwendet."
},
"prefs_OptionText_translate_exclude_lang": {
"message": "Sprachen ausschließen"
},
"prefs_OptionText_translate_exclude_lang_Info": {
"message": "Kommagetrennte Liste von Sprachkürzeln (z. B. en, fr, it), die von der automatischen Übersetzung ausgeschlossen werden sollen. Falls eine E-Mail in einer dieser Sprachen verfasst ist, wird sie nicht automatisch übersetzt bzw. die Schaltfläche für die manuelle Übersetzung wird nicht angezeigt."
},
"prefs_OptionText_Translate_main_prompt": {
"message": "Der Prompt für die Übersetzungsaufgabe:"
},
"translate_generating": {
"message": "Wird übersetzt..."
},
"translate_click_to_generate": {
"message": "Hier klicken, um diese E-Mail zu übersetzen"
},
"get_ai_translation": {
"message": "KI-Übersetzung"
},
"translate_chatgpt_web_not_supported": {
"message": "Die automatische Übersetzung erfordert eine API-basierte Verbindung. Bitte konfigurieren Sie eine API-Verbindung in den ThunderAI-Einstellungen."
},
"translate_refresh": {
"message": "Übersetzung aktualisieren"
},
"translate_delete": {
"message": "Übersetzung löschen"
},
"translate_banner_title": {
"message": "KI-Übersetzung"
},
"translate_error": {
"message": "Übersetzung fehlgeschlagen."
},
"translate_no_language_configured": {
"message": "Die Übersetzungssprache ist nicht konfiguriert. Bitte legen Sie eine Sprache in den Übersetzungseinstellungen fest oder definieren Sie eine Standardsprache in den allgemeinen Einstellungen."
},
"translate_skipped": {
"message": "Übersetzung übersprungen: Sprache ausgeschlossen oder identisch."
},
"spam_badge_tooltip": {
"message": "Spam-Score — Klicken für Details"
},
"summary_by": {
"message": "Zusammenfassung von"
},
"translate_by": {
"message": "Übersetzung von"
},
"prefs_OptionText_action_auto_batch": {
"message": "Wenn die E-Mail empfangen wird"
},
"placeholder_string": {
"message": "Platzhalter"
},
"menu_order_title": {
"message": "Menü-Reihenfolge"
},
"menu_order_popup_list_title": {
"message": "Popup-Menü"
},
"menu_order_context_list_title": {
"message": "Kontextmenü"
},
"menu_order_saved": {
"message": "Menü-Reihenfolge gespeichert!"
},
"menu_order_tab_reading": {
"message": "Lesen"
},
"menu_order_tab_composing": {
"message": "Verfassen"
},
"menu_order_badge_default": {
"message": "Standard"
},
"menu_order_badge_special": {
"message": "Spezial"
},
"menu_order_badge_custom": {
"message": "Benutzerdefiniert"
},
"menu_order_type_reading": {
"message": "Lesen"
},
"menu_order_type_composing": {
"message": "Verfassen"
},
"menu_order_type_always": {
"message": "Immer"
},
"menu_order_btn_label": {
"message": "Menü-Reihenfolge verwalten"
},
"menu_order_info": {
"message": "Elemente per Drag-and-Drop neu anordnen oder über den Umschalter ein-/ausblenden."
},
"menu_order_active_items": {
"message": "Sichtbare Elemente"
},
"menu_order_hidden_items": {
"message": "Versteckte Elemente"
},
"menu_order_icon_label": {
"message": "Icon wählen"
},
"menu_order_icon_none": {
"message": "(keines)"
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -3,7 +3,7 @@
"message": "Respondi per"
},
"extensionDescription": {
"message": "Uzu ChatGPT, Google Gemini, Claude aŭ Ollama por poluri viajn retpoŝtajn mesaĝojn!"
"message": "Uzu ChatGPT, Google Gemini, Anthropic aŭ Ollama por poluri viajn retpoŝtajn mesaĝojn!"
},
"prompt_rewrite_formal": {
"message": "Reverki formale"
@ -38,7 +38,7 @@
"From": {
"message": "De"
},
"no_string": {
"spamfilter_not_moved": {
"message": "Ne"
},
"apiwebchat_stopping": {
@ -65,6 +65,9 @@
"prompt_reply_advanced": {
"message": "Respondu al ĉi tiu fadeno"
},
"prompt_summarize_this": {
"message": "Resumu ĉi tion"
},
"prompt_translate_this": {
"message": "Traduku ĉi tion"
},
@ -119,7 +122,7 @@
"Explanation": {
"message": "Klarigo"
},
"yes_string": {
"spamfilter_moved": {
"message": "Jes"
},
"apiwebchat_you": {
@ -148,26 +151,5 @@
},
"Ollama_Models_Fetch": {
"message": "Ĝisdatigi liston de modeloj Ollama"
},
"prefs_OptionText_reply_all": {
"message": "Respondi al ĉiuj"
},
"prefs_OptionText_reply_sender": {
"message": "Respondi al sendinto"
},
"prefs_OptionText_reply_type": {
"message": "Speco de respondo"
},
"SelectAll": {
"message": "Elekti ĉion"
},
"DeselectAll": {
"message": "Malelekti ĉion"
},
"prompt_reply_custom_command": {
"message": "Respondi per komando..."
},
"customPrompts_substitute_text": {
"message": "Anstataŭigi tekston"
}
}

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{
"extensionDescription": {
"message": "Utilise ChatGPT, Goolge Gemini, Claude ou Ollama pour améliorer tes e-mails!",
"message": "Utilise ChatGPT, Goolge Gemini, Anthropic ou Ollama pour améliorer tes e-mails!",
"description": "Description of the extension."
},
"menu_title": {
@ -24,6 +24,9 @@
"prompt_classify": {
"message": "Classer"
},
"prompt_summarize_this": {
"message": "Résumer ceci"
},
"prompt_translate_this": {
"message": "Traduire ceci"
},
@ -324,6 +327,9 @@
"chagpt_api_send_button": {
"message": "Utilisation du modèle"
},
"chagpt_api_connecting": {
"message": "Tentative de connexion à OpenAI ChatGPT en utilisant la clé API fournie"
},
"Debug": {
"message": "Debug"
},
@ -357,6 +363,12 @@
"ollama_empty_model": {
"message": "Vous n'avez pas choisi de modèle pour l'API Ollama. Veuillez en choisir un sur la page des options."
},
"ollama_api_connecting": {
"message": "Tentative de connexion au serveur local Ollama en utilisant l'hôte"
},
"andModel": {
"message": "et le modèle"
},
"error_connection_interrupted": {
"message": "La connexion au serveur a été interrompue de manière inattendue"
},
@ -387,6 +399,9 @@
"OpenAIComp_empty_model": {
"message": "Vous n'avez pas choisi de modèle pour l'API compatible OpenAI. Veuillez en choisir un dans la page des options."
},
"OpenAIComp_api_connecting": {
"message": "Tentative de connexion au serveur local de l'API compatible OpenAI en utilisant l'hôte"
},
"OpenAIComp_api_request_failed": {
"message": "La requête de l'API compatible OpenAI a échoué"
},
@ -408,6 +423,12 @@
"prefs_OptionText_dynamic_menu_force_enter_info": {
"message": "Si cette option est cochée, le raccourci clavier CTRL+ALT+A enverra automatiquement l'invite sélectionnée dans le menu. Sinon, le nom de l'invite sera affiché à l'utilisateur, nécessitant une nouvelle pression sur la touche Entrée pour l'envoyer."
},
"prefs_OptionText_dynamic_menu_order_alphabet": {
"message": "Menu : Trier par ordre alphabétique"
},
"prefs_OptionText_dynamic_menu_order_alphabet_info": {
"message": "Si cette option est cochée, les prompts dans le menu seront triés par ordre alphabétique."
},
"prefs_OptionText_chatgpt_win_dims_info": {
"message": "Réglez sur 0 si vous ne souhaitez pas spécifier la taille de la fenêtre."
},
@ -477,6 +498,9 @@
"chatgpt_btn_model": {
"message": "Utiliser le modèle actuel"
},
"SendingPrompt": {
"message": "Envoi de l'invite..."
},
"AllowedValues": {
"message": "Valeurs autorisées"
},
@ -492,6 +516,9 @@
"prefs_OptionText_owl_warning": {
"message": "Il semble qu'au moins un de vos comptes utilise le module complémentaire Chouette pour Exchange. Il existe un problème connu entre Thunderbird et Chouette, qui est en cours de résolution. Pour le moment, vous pouvez utiliser ThunderAI lors de la rédaction d'e-mails, mais pas lors de leur lecture."
},
"prefs_OptionText_chatgpt_web_model_tooltip": {
"message": "Cliquez sur une valeur pour la définir."
},
"prompt_reply_full_text": {
"message": "Répondez au courriel suivant. Répondez uniquement avec le texte nécessaire, sans commentaires ou autre texte."
},
@ -516,8 +543,11 @@
"prompt_classify_full_text": {
"message": "Classifiez le texte suivant en termes de politesse, chaleur, formalité, assertivité, caractère offensant en donnant un pourcentage pour chaque catégorie. Répondez uniquement avec la catégorie et le score, sans commentaires ou autre texte."
},
"prompt_summarize_this_full_text": {
"message": "Résumez le courriel suivant sous forme de liste à puces."
},
"prompt_translate_this_full_text": {
"message": "Traduisez l'e-mail ci-dessous en {%thunderai_translate_lang%}.\n\nRègles :\n- Traduisez à la fois l'objet et le corps du message.\n- Renvoyez le résultat sous forme d'objet JSON avec trois champs : \"subject\", \"body\" et \"status\".\n- Si la traduction a été effectuée, le statut est égal à 1.\n- Si l'e-mail est écrit dans l'une de ces langues \"{%thunderai_translate_exclude_lang%}\" ou dans la langue {%thunderai_translate_lang%}, renvoyez une chaîne vide pour le corps et l'objet et réglez le statut sur -1.\n- N'ajoutez pas d'explications, de notes ou de texte en dehors du JSON.\n\nObjet du mail : {%mail_subject%}\n\nCorps du mail : {%mail_html_body%}\n\nGénérez une réponse au format JSON uniquement. La sortie doit être exclusivement un objet JSON. Voici un exemple du format JSON à utiliser :\n{\n\"subject\" : \"subject translation\",\n\"body\" : \"body translation\",\n\"status\" : \"status result\"\n}"
"message": "Traduisez le courriel suivant en"
},
"prompt_this_full_text": {
"message": "Répondez uniquement avec le texte nécessaire, sans commentaires ou autre texte."
@ -651,6 +681,9 @@
"google_gemini_api_request_failed": {
"message": "La requête API Google Gemini a échoué"
},
"google_gemini_api_connecting": {
"message": "Tentative de connexion à Google Gemini en utilisant la clé API fournie"
},
"google_gemini_empty_apikey": {
"message": "Vous n'avez pas ajouté de clé API pour l'API Google Gemini. Veuillez en insérer une dans la page des options."
},
@ -679,7 +712,7 @@
"message": "Ajouter un nouvel événement au calendrier"
},
"prompt_get_calendar_event_full_text": {
"message": "Extrayez tous les détails pertinents nécessaires pour générer un événement de calendrier à partir du texte suivant. Les informations extraites doivent inclure :\n- Titre de l'événement\n- Date et heure de début (y compris le fuseau horaire, si spécifié)\n- Date et heure de fin (y compris le fuseau horaire, si spécifié)\n- Journée entière (si mentionnée)\n- Participants\nAssurez-vous que les données sont formatées clairement et de manière cohérente afin qu'elles puissent être utilisées directement pour créer un événement de calendrier.\nS'il y a des références temporelles relatives, considérez que la date et l'heure de l'email sont \"{%mail_datetime%}\". Calculez la date et l'heure de début sur cette base. Si la date et l'heure de début calculées sont antérieures à \"{%current_datetime%}\", recalculez-les en utilisant \"{%current_datetime%}\" comme base.\nSi la durée n'est pas spécifiée, définissez-la sur une heure.\nVoici les participants : {%author%}, {%recipients%}, {%cc_list%}. Si elle est présente, exclure mon adresse : {%account_email_address%}.\nSi l'événement dure toute la journée, endDate doit être le lendemain de startDate avec l'heure définie sur \"T000000\".\nSi vous n'êtes pas en mesure d'obtenir une ou plusieurs des informations requises, répondez avec une chaîne vide.\nGénérez une réponse uniquement au format JSON. N'incluez aucun texte ou explication supplémentaire; fournissez uniquement le JSON. Voici le format à utiliser :\n{\n\"startDate\" : \"YYYYMMDDTHHMMSS\",\n\"endDate\" : \"YYYYMMDDTHHMMSS\",\n\"summary\" : \"Résumé de l'événement du calendrier ici\",\n\"forceAllDay\" : false\n\"attendees\" : [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nVoici le texte : \"{%mail_text_body_or_selected%}\""
"message": "Extrayez tous les détails pertinents nécessaires pour générer un événement de calendrier à partir du texte suivant. Les informations extraites doivent inclure :\n- Titre de l'événement\n- Date et heure de début (y compris le fuseau horaire, si spécifié)\n- Date et heure de fin (y compris le fuseau horaire, si spécifié)\n- Journée entière (si mentionnée)\n- Participants\nAssurez-vous que les données sont formatées clairement et de manière cohérente afin qu'elles puissent être utilisées directement pour créer un événement de calendrier.\nS'il y a des références temporelles relatives, considérez que la date et l'heure de l'email sont \"{%mail_datetime%}\". Calculez la date et l'heure de début sur cette base. Si la date et l'heure de début calculées sont antérieures à \"{%current_datetime%}\", recalculez-les en utilisant \"{%current_datetime%}\" comme base.\nSi la durée n'est pas spécifiée, définissez-la sur une heure.\nVoici les participants : {%author%}, {%recipients%}, {%cc_list%}. Si elle est présente, exclure mon adresse : {%account_email_address%}.\nSi vous n'êtes pas en mesure d'obtenir une ou plusieurs des informations requises, répondez avec une chaîne vide.\nGénérez une réponse uniquement au format JSON. N'incluez aucun texte ou explication supplémentaire; fournissez uniquement le JSON. Voici le format à utiliser :\n{\n\"startDate\" : \"YYYYMMDDTHHMMSS\",\n\"endDate\" : \"YYYYMMDDTHHMMSS\",\n\"summary\" : \"Résumé de l'événement du calendrier ici\",\n\"forceAllDay\" : false\n\"attendees\" : [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nVoici le texte : \"{%selected_text%}\""
},
"prefs_OptionText_get_calendar_event": {
"message": "Ajouter un nouvel événement au calendrier à partir du texte sélectionné"
@ -745,7 +778,7 @@
"message": "Ajouter des tags automatiquement"
},
"prefs_OptionText_add_tags_auto_only_inbox": {
"message": "Ajoutez des balises uniquement aux e-mails de la boîte de réception"
"message": "Ajouter des tags uniquement aux e-mails de la boîte de réception"
},
"prefs_OptionText_spamfilter_threshold": {
"message": "Seuil de spam"
@ -759,7 +792,7 @@
"Moved_to_Spam": {
"message": "Déplacé dans le spam"
},
"no_string": {
"spamfilter_not_moved": {
"message": "Non"
},
"spamfilter_no_reports": {
@ -768,6 +801,9 @@
"SpamFilter_PageTitle": {
"message": "Gérer les paramètres du filtre anti-spam"
},
"sparks_not_installed": {
"message": "ThunderAI Sparks non installé!"
},
"SpamFilter_info_default": {
"message": "Sur cette page, vous pouvez modifier l'invite par défaut utilisée pour détecter les e-mails indésirables."
},
@ -780,7 +816,7 @@
"SpamReport_Title": {
"message": "Rapports du filtre anti-spam"
},
"yes_string": {
"spamfilter_moved": {
"message": "Oui"
},
"prefs_OptionText_add_tags_auto_Info": {
@ -792,7 +828,7 @@
"SpamFilter_prompt_text_title": {
"message": "Texte du prompt actuelle"
},
"placeholder_thunderai_def_lang": {
"thunderai_def_lang": {
"message": "Langue par défaut telle que définie dans les options de ThunderAI."
},
"prefs_OptionText_btnManageSpamFilterInfo": {
@ -817,7 +853,16 @@
"message": "Date du rapport"
},
"prompt_spamfilter_full_text": {
"message": "Analysez l'e-mail suivant et déterminez s'il s'agit d'un spam ou non. Prenez en compte des facteurs tels que des mots-clés suspects, un langage promotionnel excessif, des lignes d'objet trompeuses, des demandes d'informations personnelles et des adresses d'expéditeurs inhabituelles.\nFournissez une valeur de 0 (non spam) à 100 (spam) et une explication de 10 mots maximum.\nEn cas de données de message manquantes, définissez la valeur à 0 (non spam) et indiquez la raison.\nGénérez une réponse uniquement au format JSON. N'incluez aucun texte ou explication supplémentaire; fournissez uniquement le JSON. Voici le format à utiliser :\n{\n\"explanation\" : \"Brève explication de votre raisonnement\",\n\"spamValue\" : <entier de 0 à 100>\n}\nVoici les informations de l'e-mail :\nExpéditeur : \"{%author%}\"\nObjet : \"{%mail_subject%}\"\nCorps HTML : \"{%mail_html_body%}\""
"message": "Analysez l'e-mail suivant et déterminez s'il s'agit d'un spam ou non. Prenez en compte des facteurs tels que des mots-clés suspects, un langage promotionnel excessif, des lignes d'objet trompeuses, des demandes d'informations personnelles et des adresses d'expéditeurs inhabituelles.\nFournissez une valeur de 0 (non spam) à 100 (spam) et une explication de 10 mots maximum.\nEn cas de données de message manquantes, définissez la valeur à 0 (non spam) et indiquez la raison.\nGénérez une réponse uniquement au format JSON. N'incluez aucun texte ou explication supplémentaire; fournissez uniquement le JSON. Voici le format à utiliser :\n{\n\"spamValue\" : <entier de 0 à 100>,\n\"explanation\" : \"Brève explication de votre raisonnement\"\n}\nVoici les informations de l'e-mail :\nExpéditeur : \"{%author%}\"\nObjet : \"{%mail_subject%}\"\nCorps HTML : \"{%mail_html_body%}\""
},
"context_menu_mzta-add-tags": {
"message": "Ajouter des étiquettes"
},
"prefs_OptionText_spamfilter_context_menu": {
"message": "Afficher l'option \"Analyser comme spam\" dans le menu contextuel"
},
"prefs_OptionText_spamfilter_context_menu_Info": {
"message": "Si coché, l'option \"Analyser comme spam\" apparaîtra lors dun clic droit sur un e-mail dans la liste des messages."
},
"noActiveCalendar": {
"message": "Aucun calendrier modifiable trouvé!"
@ -834,6 +879,9 @@
"prefs_OptionText_calendar_enforce_timezone": {
"message": "Forcer le fuseau horaire spécifié"
},
"prefs_OptionText_add_tags_context_menu_Info": {
"message": "Si coché, l'option \"Ajouter des étiquettes\" apparaîtra lors dun clic droit sur un e-mail dans la liste des messages."
},
"chatgpt_win_diff_title": {
"message": "Différences entre le texte original et le texte modifié"
},
@ -849,6 +897,9 @@
"apiwebchat_error": {
"message": "Erreur"
},
"prefs_OptionText_add_tags_context_menu": {
"message": "Afficher l'option \"Ajouter des étiquettes\" dans le menu contextuel"
},
"apiwebchat_use_this_answer": {
"message": "Utiliser cette réponse"
},
@ -858,6 +909,9 @@
"customPrompts_form_label_use_diff_viewer": {
"message": "Active la visionneuse de comparaison de texte"
},
"context_menu_mzta-spamfilter": {
"message": "Analyser comme spam"
},
"apiwebchat_info": {
"message": "Information"
},
@ -876,6 +930,12 @@
"CORS_alternative_1": {
"message": "Des problèmes pour configurer le CORS?"
},
"CORS_alternative_2": {
"message": "Appuie sur le bouton ci-dessous pour accorder la permission <all_urls> afin d'éviter tout problème lié au CORS."
},
"CORS_give_allurls_perm": {
"message": "Accorde la permission \"tous les URLs\""
},
"remember_CORS": {
"message": "N'oublie pas, tu dois configurer les paramètres CORS sur le serveur!"
},
@ -961,7 +1021,7 @@
"message": "Chaque modification est enregistrée immédiatement."
},
"AccountSelector_Spamfilter": {
"message": "Choisissez les comptes pour lesquels le filtre anti-spam est actif"
"message": "Choisissez les comptes pour lesquels le filtre anti-spam est acti"
},
"ask_integration_permission_ok": {
"message": "Autorisation accordée. Vous pouvez cliquer ici pour fermer cet onglet et revenir à la fenêtre principale."
@ -1020,37 +1080,34 @@
}
},
"anthropic_empty_model": {
"message": "Vous n'avez pas choisi de modèle pour l'API Claude. Veuillez en sélectionner un dans la page des options."
"message": "Vous n'avez pas choisi de modèle pour l'API Anthropic. Veuillez en sélectionner un dans la page des options."
},
"Anthropic_Version_Info": {
"message": "OBLIGATOIRE. Ne modifiez pas cette valeur sauf si vous savez ce que vous faites. Plus d'informations sur :"
},
"ask_anthropic_api_permission_1": {
"message": "Pour utiliser l'intégration de l'API Claude, vous devez accorder l'autorisation requise."
},
"ask_openai_api_permission_1": {
"message": "Pour utiliser l'intégration de l'API OpenAI, vous devez accorder l'autorisation requise."
"message": "Pour utiliser l'intégration de l'API Anthropic, vous devez accorder l'autorisation requise."
},
"prefs_OptionText_anthropic_max_tokens_Info": {
"message": "Le nombre maximum de jetons à générer dans la complétion. Le total des jetons de votre invite plus max_tokens ne peut pas dépasser la longueur du contexte du modèle."
},
"anthropic_empty_apikey": {
"message": "Vous n'avez pas ajouté de clé API pour l'API Claude. Veuillez en insérer une dans la page des options."
"message": "Vous n'avez pas ajouté de clé API pour l'API Anthropic. Veuillez en insérer une dans la page des options."
},
"anthropic_empty_version": {
"message": "Vous n'avez pas ajouté de chaîne de version pour l'API Claude. Veuillez en insérer une dans la page des options."
"message": "Vous n'avez pas ajouté de chaîne de version pour l'API Anthropic. Veuillez en insérer une dans la page des options."
},
"apiwebchat_selection_info": {
"message": "Si vous sélectionnez du texte, seule cette portion sera prise en compte."
},
"Anthropic_Version": {
"message": "Version de lAPI Claude"
"message": "Version de lAPI Anthropic"
},
"prefs_OptionText_anthropic_max_tokens": {
"message": "Nombre maximum de jetons"
"message": "Nombre maximum de jetons Anthropic"
},
"anthropic_api_request_failed": {
"message": "Échec de la requête à l'API Claude"
"message": "Échec de la requête à l'API Anthropic"
},
"prefs_OpenAIComp_AvailableServices": {
"message": "Services Disponibles"
@ -1067,19 +1124,19 @@
}
},
"prefs_Anthropic_API_Key": {
"message": "Clé API Claude"
"message": "Clé API Anthropic"
},
"prefs_Connection_type_Anthropic_API": {
"message": "API Claude"
"message": "API Anthropic"
},
"Anthropic_Models": {
"message": "Modèles Claude"
"message": "Modèles Anthropic"
},
"Anthropic_Models_Fetch": {
"message": "Mettre à jour la liste des modèles Claude"
"message": "Mettre à jour la liste des modèles Anthropic"
},
"Anthropic_Models_Error_fetching": {
"message": "Erreur lors de la tentative de récupération des modèles Claude"
"message": "Erreur lors de la tentative de récupération des modèles Anthropic"
},
"_api_connecting_model": {
"message": "Modèle",
@ -1187,7 +1244,7 @@
"message": "Gérer les espaces réservés de données"
},
"prompt_reply_custom_command": {
"message": "Répondre avec une commande..."
"message": "Répondre avec une commande"
},
"prompt_reply_custom_command_full_text": {
"message": "Répondez à l'e-mail suivant « {%mail_text_body%} ». {%additional_text%}. Répondez uniquement avec le texte nécessaire, sans commentaires ou texte supplémentaire."
@ -1200,615 +1257,5 @@
},
"OpenAIComp_ClearModelsList_Confirm": {
"message": "Êtes-vous sûr de vouloir effacer la liste des modèles? Cette action est irréversible."
},
"prefs_OptionText_add_tags_auto_uselist": {
"message": "Utilisez uniquement ces balises"
},
"prefs_OptionText_add_tags_auto_uselist_Info": {
"message": "Si cette option est cochée, lIA ajoutera uniquement des balises de la liste ci-dessous."
},
"prefs_OptionText_add_tags_auto_uselist_list_Info": {
"message": "La liste doit contenir au moins une balise. Ajoutez une balise par ligne ou séparée par une virgule."
},
"prompt_add_tags_use_list": {
"message": "Utilisez uniquement les balises de cette liste séparée par des virgules"
},
"prefs_OptionText_add_tags_use_specific_integration_Info": {
"message": "Si cette option est cochée, le Modèle et lAPI spécifiés ci-dessous seront utilisés pour ajouter des balises aux e-mails, quel que soit celui choisi dans la page des options de ThunderAI."
},
"placeholder_mail_attachments_info": {
"message": "Informations sur les pièces jointes dans le-mail"
},
"prefs_OptionText_use_specific_integration": {
"message": "Utiliser un Modèle et une API spécifiques"
},
"prefs_OptionText_spamfilter_use_specific_integration_Info": {
"message": "Si cette option est cochée, le Modèle et lAPI spécifiés ci-dessous seront utilisés pour le filtre anti-spam, quel que soit celui choisi dans la page des options de ThunderAI."
},
"chatgpt_click_force_completion": {
"message": "Il semble quil ne soit pas possible de savoir si ChatGPT a terminé. Cliquez ici pour forcer lachèvement du travail."
},
"warn_API_needed": {
"message": "Pour utiliser cette fonctionnalité, vous avez besoin dune intégration API plutôt que de lintégration Web de ChatGPT. Vous pouvez définir une API spécifique dans la page des paramètres de la fonctionnalité en cochant dabord la case ci-dessus, puis en cliquant sur le bouton à gauche."
},
"prefs_google_gemini_thinking_budget_Info": {
"message": "Définissez le nombre de jetons à utiliser pour le raisonnement. Laissez ce champ vide si le modèle sélectionné ne prend pas en charge le raisonnement ou si vous souhaitez utiliser la méthode par défaut. Entrez 0 pour désactiver le raisonnement, ou -1 pour lactiver de manière dynamique."
},
"prefs_google_gemini_thinking_budget": {
"message": "Budget de réflexion"
},
"SelectAll": {
"message": "Tout sélectionner"
},
"DeselectAll": {
"message": "Tout désélectionner"
},
"Anthropic_System_Prompt": {
"message": "Prompt Système"
},
"Anthropic_System_Prompt_Info": {
"message": "Vous pouvez améliorer les performances de Claude en utilisant un Prompt Système pour lui attribuer un rôle. Cette technique, appelée guidage par rôle, est la méthode la plus efficace pour utiliser les system prompts avec Claude. Le rôle approprié peut transformer Claude dun assistant généraliste en un véritable expert virtuel dans votre domaine."
},
"Optional_Permission_Denied_Model_Fetching": {
"message": "Vous avez refusé lautorisation facultative nécessaire pour récupérer les modèles pour cette intégration."
},
"prompt_string": {
"message": "Prompt"
},
"placeholder_mail_headers": {
"message": "En-têtes d'e-mail"
},
"prefs_chatgpt_api_temperature_Info": {
"message": "Quelle température d'échantillonnage utiliser, entre 0 et 2. Des valeurs plus élevées comme 0,8 rendront le résultat plus aléatoire, tandis que des valeurs plus basses comme 0,2 le rendront plus ciblé et déterministe."
},
"prefs_ollama_temperature_Info": {
"message": "La température du modèle. Augmenter la température rendra les réponses du modèle plus créatives. La valeur par défaut est 0,8. Il est recommandé d'utiliser des valeurs comprises entre 0 et 1."
},
"prefs_api_temperature": {
"message": "Température"
},
"prefs_openai_comp_temperature_Info": {
"message": "Quelle température d'échantillonnage utiliser, entre 0 et 2. Des valeurs plus élevées, comme 0,8, rendront le résultat plus aléatoire, tandis que des valeurs plus basses, comme 0,2, le rendront plus ciblé et déterministe."
},
"prefs_google_gemini_temperature_Info": {
"message": "Ce paramètre doit être un nombre compris entre 0,0 et 2,0. Il contrôle le caractère aléatoire du résultat. La valeur par défaut varie selon le modèle. Laissez ce champ vide pour ne pas définir le paramètre dans l'appel d'API."
},
"prefs_anthropic_temperature_Info": {
"message": "Degré d'aléa injecté dans la réponse. La valeur par défaut est 1,0. La plage de valeurs s'étend di 0,0 à 1,0. Utilisez une température proche de 0,0 pour des tâches analytiques ou des choix multiples, et proche de 1,0 pour des tâches créatives et génératives. Notez que même avec une température de 0,0, les résultats ne seront pas totalement déterministes."
},
"reset": {
"message": "Réinitialiser"
},
"placeholder_mail_text_body_or_selected": {
"message": "Corps de l'e-mail ou texte sélectionné"
},
"placeholder_mail_html_body_or_selected": {
"message": "Corps de l'e-mail ou HTML sélectionné"
},
"prefs_OptionText_chatgpt_web_load_wait_time": {
"message": "Délai d'attente pour le chargement de la page"
},
"prefs_OptionText_chatgpt_web_load_wait_time_info": {
"message": "Temps en millisecondes à attendre pour le chargement de la page ChatGPT avant de charger le contenu supplémentaire. La valeur par défaut est 1000ms. Si un GPT personnalisé ou un Projet est défini, 1000ms supplémentaires seront ajoutés à cette valeur."
},
"prompt_get_calendar_event_from_clipboard": {
"message": "Ajouter un événement de calendrier depuis le presse-papiers"
},
"clipboard_read_error": {
"message": "Impossible de lire le presse-papiers. Veuillez vérifier les autorisations."
},
"clipboard_empty_error": {
"message": "Le presse-papiers est vide. Veuillez d'abord copier du texte."
},
"clipboard_permission_denied": {
"message": "L'autorisation d'accès au presse-papiers a été refusée. Veuillez réactiver la fonctionnalité dans les paramètres per accorder l'autorisation."
},
"clipboard_permission_error": {
"message": "Erreur lors de la demande d'autorisation du presse-papiers. Veuillez réessayer."
},
"prefs_OptionText_get_calendar_event_from_clipboard": {
"message": "Obtenir l'événement de calendrier depuis le presse-papiers"
},
"prefs_OptionText_get_calendar_event_from_clipboard_Info": {
"message": "Afficher un élément de menu supplémentaire pour créer des événements de calendrier à partir du contenu textuel du presse-papiers."
},
"Summarize_prompt_prefs_title": {
"message": "Options de résumé"
},
"prompt_summarize": {
"message": "Résumer cet e-mail ou ces e-mails"
},
"prompt_summarize_full_text": {
"message": "Fournissez un résumé concis du ou des messages électroniques suivants. Le résumé doit comporter un maximum de 3 à 5 phrases et capturer les points principaux. Rédigez en paragraphes simples, sans listes à puces, énumérations ou formatage markdown.\n\n"
},
"prompt_summarize_email_template": {
"message": "Résumé du modèle d'e-mail"
},
"prompt_summarize_email_template_full_text": {
"message": "De : {%author%}\nÀ : {%recipients%}\nCopie : {%cc_list%}\nObjet : {%mail_subject%}\nDate : {%mail_datetime%}\nPièces jointes :\n{%mail_attachments_info%}\n\nCorps du message :\n{%mail_text_body%}"
},
"prompt_summarize_email_separator": {
"message": "Séparateur d'e-mail"
},
"prompt_summarize_email_separator_full_text": {
"message": "\n\n---------- E-MAIL SUIVANTE ----------\n\n"
},
"prefs_OptionText_Summarize_infoline2": {
"message": "Vous pouvez modifier linstruction (prompt) comme vous le souhaitez : le premier champ est linstruction principale, le deuxième est le modèle pour un e-mail individuel. La liste des e-mails sera ajoutée à la suite de linstruction principale. Les e-mails seront séparés par le séparateur spécifié dans le troisième champ."
},
"prefs_OptionText_Summarize_main_prompt": {
"message": "L'instruction principale décrivant la tâche à effectuer sur tous les e-mails sélectionnés :"
},
"prefs_OptionText_Summarize_email_template": {
"message": "Le modèle pour un e-mail unique :"
},
"prefs_OptionText_Summarize_email_separator": {
"message": "Le séparateur entre les e-mails :"
},
"prefs_OptionText_get_calendar_event_use_specific_integration_Info": {
"message": "Si coché, le Modèle et l'API spécifiés ci-dessous seront utilisés pour créer des événements de calendrier, quel que soit celui choisi dans la page des options de ThunderAI."
},
"prefs_OptionText_summarize": {
"message": "Résumer l'e-mail"
},
"prefs_OptionText_summarize_use_specific_integration_Info": {
"message": "Si coché, le Modèle et l'API spécifiés ci-dessous seront utilisés pour résumer les e-mails, quel que soit celui choisi dans la page des options de ThunderAI."
},
"prefs_OptionText_summarize_Info": {
"message": "Si coché, ajoute une option au menu contextuel pour résumer l'e-mail."
},
"prefs_OptionText_btnManageSummarizeInfo": {
"message": "Gérer les paramètres de résumé"
},
"Summarize_PageTitle": {
"message": "Gestion des paramètres de résumé"
},
"Summarize_info_default": {
"message": "Sur cette page, vous pouvez modifier le prompt par défaut utilisé pour résumer les e-mails."
},
"Summarize_prompt_text_title": {
"message": "Texte actuel du prompt"
},
"prefs_OptionText_spamfilter_show_msg_panel": {
"message": "Afficher le panneau de rapport de spam"
},
"prefs_OptionText_spamfilter_show_msg_panel_Info": {
"message": "Si coché, un panneau avec le rapport de spam s'affichera au-dessus du message."
},
"Spam": {
"message": "Indésirables"
},
"Valid": {
"message": "Valide"
},
"CORS_alternative_2_new": {
"message": "Appuyez sur le bouton ci-dessous pour donner l'autorisation à l'hôte actuel afin d'éviter tout problème CORS."
},
"CORS_give_host_perm": {
"message": "Donner l'autorisation à l'hôte actuel"
},
"CORS_localhost_warn": {
"message": "Si vous utilisez localhost ou 127.0.0.1 parce que le serveur d'IA est hébergé sur votre PC, l'autorisation <all_urls> est requise."
},
"customPrompts_export_include_api_settings": {
"message": "Voulez-vous inclure les paramètres API dans l'exportation? Attention, la clé API sera également enregistrée dans le fichier!"
},
"prefs_OptionText_calendar_no_selection": {
"message": "Ne pas demander de sélectionner du texte"
},
"prefs_OptionText_calendar_no_selection_Info": {
"message": "Si coché, il n'est pas nécessaire de sélectionner du texte. Le corps complet du message sera utilisé pour créer l'événement de calendrier."
},
"spam_check_in_progress": {
"message": "Analyse antispam en cours..."
},
"customPrompts_btnCopy": {
"message": "Copier"
},
"copy_text": {
"message": "copie"
},
"prefs_THStats_1": {
"message": "Voulez-vous de belles statistiques sur vos e-mails?"
},
"prefs_THStats_2": {
"message": "Cliquez ici! Essayez ThunderStats!"
},
"prefs_OptionText_calendar_no_selection_missing_placeholder": {
"message": "L'invite doit contenir l'espace réservé {%mail_text_body_or_selected%} ou {%mail_html_body_or_selected%} pour activer cette option. Veuillez ajouter l'un de ces espaces réservés à l'invite ou rétablir la valeur par défaut."
},
"antispam_by": {
"message": "Antispam par"
},
"prefs_doc_title": {
"message": "Documentation"
},
"prefs_doc_setup_guide": {
"message": "Guides de configuration"
},
"prefs_doc_custom_prompt_tutorial": {
"message": "Tutoriel sur les prompts personnalisés"
},
"prefs_doc_open_welcome": {
"message": "Ouvrir la page d'accueil"
},
"prefs_OptionText_chatgpt_win_pos_text": {
"message": "Position de la fenêtre de chat IA"
},
"prefs_OptionText_chatgpt_win_top": {
"message": "Haut"
},
"prefs_OptionText_chatgpt_win_left": {
"message": "Gauche"
},
"prefs_chatgpt_win_save_position": {
"message": "Enregistrer automatiquement la position de la fenêtre lors de la fermeture."
},
"prefs_chatgpt_win_position_info": {
"message": "Laisser vide pour utiliser la position par défaut."
},
"prefs_OptionText_spamfilter_skip_addressbook": {
"message": "Ignorer les adresses du carnet d'adresses"
},
"prefs_OptionText_spamfilter_skip_addressbook_Info": {
"message": "Si cette option est sélectionnée, les e-mails provenant d'expéditeurs figurant dans vos carnets d'adresses ne seront pas envoyés à l'IA pour le filtrage anti-spam."
},
"spamfilter_skip_addressbook_explanation": {
"message": "L'expéditeur est un contact dans votre carnet d'adresses."
},
"addressbook_permission_denied": {
"message": "La permission d'accéder au carnet d'adresses a été refusée. Veuillez réactiver la fonction pour accorder la permission."
},
"addressbook_permission_error": {
"message": "Erreur lors de la demande de permission pour le carnet d'adresses. Veuillez réessayer."
},
"apiwebchat_done": {
"message": "Terminé!"
},
"prefs_OptionText_anthropic_extended_thinking_budget": {
"message": "Budget de réflexion étendue (tokens)"
},
"prefs_OptionText_anthropic_extended_thinking_budget_Info": {
"message": "Nombre maximum de tokens que le modèle peut utiliser pour la réflexion étendue. Réglez sur 0 pour désactiver. Lorsqu'il est activé, la valeur de la température est ignorée par l'API Claude."
},
"prefs_ollama_format_json": {
"message": "Forcer le format JSON"
},
"prefs_ollama_format_json_Info": {
"message": "Si coché, Ollama sera forcé de renvoyer une réponse JSON valide. Cette option ne fonctionne qu'avec les modèles prenant en charge la sortie structurée."
},
"prefs_specific_api_indicator": {
"message": "Utilisation de $1",
"placeholders": {
"1": {
"content": "$1"
}
}
},
"prefs_OptionText_auto_summary": {
"message": "Activer le résumé IA automatique pour l'aperçu des messages"
},
"prefs_OptionText_auto_summary_Info": {
"message": "Si sélectionné, ThunderAI générera et affichera automatiquement des résumés IA au-dessus des messages lors de leur ouverture. Remarque : cela enverra immédiatement chaque message consulté au service IA configuré."
},
"auto_summary_title": {
"message": "Résumé ThunderAI"
},
"auto_summary_generating": {
"message": "Génération du résumé IA..."
},
"auto_summary_failed": {
"message": "Échec de la génération du résumé IA. Vérifiez vos paramètres et réessayez."
},
"prefs_OptionText_summarize_auto": {
"message": "Résumer les messages automatiquement"
},
"prefs_OptionText_summarize_auto_Info": {
"message": "Choisissez de générer automatiquement des résumés lors de la visualisation des messages. Nécessite une connexion basée sur l'API (pas ChatGPT Web)."
},
"prefs_OptionText_summarize_display_mode": {
"message": "Afficher le résumé dans"
},
"prefs_OptionText_summarize_display_mode_Info": {
"message": "Choisissez où afficher le résultat du résumé. Le mode 'En ligne' affiche une bannière directement dans le panneau du message. Le mode 'Fenêtre de chat' ouvre la fenêtre de chat IA."
},
"prefs_OptionText_summarize_max_display_length": {
"message": "Longueur maximale d'affichage"
},
"prefs_OptionText_summarize_max_display_length_Info": {
"message": "Nombre maximum de caractères à afficher dans le résumé en ligne. Réglez sur 0 pour aucune limite."
},
"prefs_OptionText_summarize_strip_formatting": {
"message": "Supprimer le formatage"
},
"prefs_OptionText_summarize_strip_formatting_Info": {
"message": "Supprime le formatage HTML et Markdown du résumé généré par l'IA, n'affichant que du texte brut."
},
"summarize_see_more": {
"message": "Voir plus"
},
"summarize_see_less": {
"message": "Voir moins"
},
"summarize_title": {
"message": "Aperçu ThunderAI"
},
"get_ai_summary": {
"message": "Résumé IA"
},
"summarize_collapse": {
"message": "Réduire le résumé"
},
"summarize_generating": {
"message": "Génération du résumé..."
},
"summarize_error": {
"message": "Impossible de générer le résumé"
},
"summarize_click_to_generate": {
"message": "Cliquez ici pour générer un résumé"
},
"summarize_chatgpt_web_not_supported": {
"message": "Le résumé automatique nécessite une connexion basée sur l'API. Veuillez configurer une connexion API dans les paramètres de ThunderAI."
},
"summarize_refresh": {
"message": "Actualiser le résumé"
},
"spamfilter_refresh": {
"message": "Actualiser le rapport spam"
},
"spamfilter_delete": {
"message": "Supprimer le rapport spam"
},
"summarize_delete": {
"message": "Supprimer le résumé"
},
"generic_error_dismiss": {
"message": "Ignorer"
},
"prefs_OptionText_translate": {
"message": "Traduire les e-mails"
},
"prefs_OptionText_translate_use_specific_integration_Info": {
"message": "Si sélectionné, le modèle et l'API spécifiés ci-dessous seront utilisés pour la traduction des e-mails, quel que soit le choix fait dans les options générales de ThunderAI."
},
"prefs_OptionText_translate_Info": {
"message": "Si sélectionné, ajoute un bouton de traduction dans le corps du message."
},
"prefs_OptionText_btnManageTranslateInfo": {
"message": "Gérer les paramètres de traduction"
},
"Translate_PageTitle": {
"message": "Gérer les paramètres de traduction"
},
"Translate_info_default": {
"message": "Sur cette page, vous pouvez modifier le prompt par défaut utilisé pour traduire les e-mails."
},
"Translate_prompt_text_title": {
"message": "Texte du prompt actuel"
},
"Translate_prompt_prefs_title": {
"message": "Options de traduction"
},
"prefs_OptionText_translate_auto": {
"message": "Traduire les messages automatiquement"
},
"prefs_OptionText_action_auto_disabled": {
"message": "Désactivé"
},
"prefs_OptionText_action_auto_manual": {
"message": "Bouton manuel uniquement"
},
"prefs_OptionText_action_auto_automatic": {
"message": "À l'ouverture de l'e-mail"
},
"prefs_OptionText_translate_auto_Info": {
"message": "Choisissez quand traduire les messages : désactivé, uniquement au clic sur le bouton, ou automatiquement à l'ouverture d'un message."
},
"prefs_OptionText_display_mode_inline": {
"message": "Panneau de message (en ligne)"
},
"prefs_OptionText_display_mode_webchat": {
"message": "Fenêtre de chat"
},
"prefs_OptionText_translate_max_display_length": {
"message": "Longueur maximale de traduction affichée"
},
"prefs_OptionText_translate_max_display_length_Info": {
"message": "Nombre maximum de caractères affichés dans la traduction en ligne. 0 = pas de limite. Si défini, le texte plus long sera tronqué avec un bouton 'Voir plus'."
},
"translate_see_more": {
"message": "Voir plus"
},
"translate_see_less": {
"message": "Voir moins"
},
"prefs_OptionText_translate_lang": {
"message": "Langue de destination"
},
"prefs_OptionText_translate_lang_Info": {
"message": "Langue dans laquelle traduire les e-mails. Si vide, utilise le paramètre de langue par défaut."
},
"prefs_OptionText_translate_exclude_lang": {
"message": "Exclure des langues"
},
"prefs_OptionText_translate_exclude_lang_Info": {
"message": "Liste de codes de langue séparés par des virgules (ex : en, fr, it) à ignorer pour la traduction automatique. Si l'e-mail est dans l'une de ces langues, il ne sera pas traduit automatiquement ou le bouton manuel ne sera pas affiché."
},
"prefs_OptionText_Translate_main_prompt": {
"message": "Prompt décrivant la tâche de traduction :"
},
"translate_generating": {
"message": "Traduction en cours..."
},
"translate_click_to_generate": {
"message": "Cliquez ici pour traduire cet e-mail"
},
"get_ai_translation": {
"message": "Traduction IA"
},
"translate_chatgpt_web_not_supported": {
"message": "La traduction automatique nécessite une connexion basée sur l'API. Veuillez configurer une connexion API dans les paramètres de ThunderAI."
},
"translate_refresh": {
"message": "Actualiser la traduction"
},
"translate_delete": {
"message": "Supprimer la traduction"
},
"translate_banner_title": {
"message": "Traduction IA"
},
"translate_error": {
"message": "Échec de la traduction."
},
"translate_no_language_configured": {
"message": "Aucune langue de traduction n'est configurée. Définissez une langue dans les paramètres de Traduction ou une langue par défaut dans les paramètres Généraux."
},
"translate_skipped": {
"message": "Traduction ignorée : langue exclue ou identique à la destination."
},
"spam_badge_tooltip": {
"message": "Score de spam — Cliquez pour voir l'explication"
},
"summary_by": {
"message": "Résumé par"
},
"translate_by": {
"message": "Traduction par"
},
"prefs_OptionText_action_auto_batch": {
"message": "À la réception de l'e-mail"
},
"placeholder_string": {
"message": "Espace réservé"
},
"menu_order_title": {
"message": "Ordre du menu"
},
"menu_order_popup_list_title": {
"message": "Menu contextuel (Popup)"
},
"menu_order_context_list_title": {
"message": "Menu contextuel"
},
"menu_order_saved": {
"message": "Ordre du menu enregistré!"
},
"menu_order_tab_reading": {
"message": "Lecture"
},
"menu_order_tab_composing": {
"message": "Rédaction"
},
"menu_order_badge_default": {
"message": "Par défaut"
},
"menu_order_badge_special": {
"message": "Spécial"
},
"menu_order_badge_custom": {
"message": "Personnalisé"
},
"menu_order_type_reading": {
"message": "Lecture"
},
"menu_order_type_composing": {
"message": "Rédaction"
},
"menu_order_type_always": {
"message": "Toujours"
},
"menu_order_btn_label": {
"message": "Gérer les paramètres d'ordre du menu"
},
"menu_order_info": {
"message": "Faites glisser et déposez les éléments pour les réordonner. Utilisez l'interrupteur pour afficher ou masquer les éléments dans chaque menu."
},
"menu_order_active_items": {
"message": "Éléments visibles"
},
"menu_order_hidden_items": {
"message": "Éléments masqués"
},
"menu_order_icon_label": {
"message": "Choisir une icône"
},
"menu_order_icon_none": {
"message": "(aucune)"
},
"show_in": {
"message": "Afficher dans"
},
"show_in_popup": {
"message": "Fenêtre contextuelle uniquement"
},
"show_in_context": {
"message": "Menu contextuel uniquement"
},
"show_in_both": {
"message": "Les deux"
},
"webchat_save_as_summary": {
"message": "Enregistrer comme résumé"
},
"prefs_storage_title": {
"message": "Stockage"
},
"prefs_storage_info": {
"message": "Le stockage est utilisé pour sauvegarder les informations relatives au score de spam, aux résumés et aux traductions de chaque message."
},
"prefs_storage_size": {
"message": "Taille du stockage"
},
"prefs_storage_clear_button": {
"message": "Effacer le stockage"
},
"prefs_storage_clear_confirm": {
"message": "Êtes-vous sûr de vouloir effacer toutes le données stockées (résumés, rapports de spam, traductions)? Cette action est irréversible."
},
"prefs_storage_clear_done": {
"message": "$COUNT$ enregistrements supprimés.",
"placeholders": {
"count": {
"content": "$1"
}
}
},
"prefsInfoDesc_7": {
"message": "Pour utiliser l'API Google Gemini, vous avez besoin d'une clé API Google Gemini et vous devez choisir un modèle."
},
"prefsInfoDesc_8": {
"message": "Pour utiliser l'API Claude, vous avez besoin d'une clé API Anthropic Claude et vous devez choisir un modèle."
},
"placeholder_mail_full_headers": {
"message": "Tous les en-têtes du message"
},
"prefs_OptionText_hide_thinking": {
"message": "Réduire le bloc de réflexion par défaut"
},
"prefs_OptionText_hide_thinking_info": {
"message": "Contrôle l'état initial du bloc de réflexion affiché au-dessus de la réponse. Si coché, le bloc est réduit par défaut. Le contenu de la réflexion est toujours conservé."
},
"prefs_OptionText_thinking_summary": {
"message": "Réflexion"
},
"placeholder_thunderai_translate_lang": {
"message": "La langue à utiliser pour les traductions des messages."
},
"placeholder_thunderai_translate_exclude_lang": {
"message": "Les codes de langue à ne pas traduire lorsqu'ils sont détectés."
},
"SpamFilter_skip_addresses_title": {
"message": "Liste d'exclusion d'adresses e-mail"
},
"SpamFilter_skip_addresses_infoline": {
"message": "Les e-mails provenant de ces adresses ne seront pas envoyés à l'IA pour le filtrage du spam."
},
"SpamFilter_skip_addresses_infoline2": {
"message": "Ajoutez une adresse e-mail par ligne, ou séparez-les par une virgule."
},
"spamfilter_skip_addresses_explanation": {
"message": "L'expéditeur figure dans la liste d'exclusion de l'antispam."
}
}

View file

@ -1,6 +1,6 @@
{
"extensionDescription": {
"message": "Koristite ChatGPT, Google Gemini, Claude ili Ollama kako bi poboljšali vaše e-poruke!",
"message": "Koristite ChatGPT, Google Gemini, Anthropic ili Ollama kako bi poboljšali vaše e-poruke!",
"description": "Description of the extension."
},
"menu_title": {
@ -24,6 +24,9 @@
"prompt_classify": {
"message": "Klasificiraj"
},
"prompt_summarize_this": {
"message": "Sažmi ovo"
},
"prompt_translate_this": {
"message": "Prevedi ovo"
},
@ -324,6 +327,9 @@
"chagpt_api_send_button": {
"message": "Korištenje modela"
},
"chagpt_api_connecting": {
"message": "Pokušaj povezivanja na OpenAI ChatGPT pomoću dostavljenog API ključa"
},
"Debug": {
"message": "Otklanjanje pogrešaka"
},
@ -357,6 +363,12 @@
"ollama_empty_model": {
"message": "Niste odabrali model za Ollama API. Odaberite jedan na stranici s mogućnostima."
},
"ollama_api_connecting": {
"message": "Pokušaj povezivanja na Ollama lokalni poslužitelj pomoću glavnog računala"
},
"andModel": {
"message": "i model"
},
"error_connection_interrupted": {
"message": "Veza s poslužiteljem je neočekivano prekinuta"
},
@ -387,6 +399,9 @@
"OpenAIComp_empty_model": {
"message": "Niste odabrali model za OpenAI kompatibilan API. Odaberite jedan na stranici s opcijama."
},
"OpenAIComp_api_connecting": {
"message": "Pokušaj povezivanja s OpenAI kompatibilnim API lokalnim poslužiteljem pomoću glavnog računala"
},
"OpenAIComp_api_request_failed": {
"message": "OpenAI Comp API zahtjev nije uspio"
},
@ -408,6 +423,12 @@
"prefs_OptionText_dynamic_menu_force_enter_info": {
"message": "Ako je označeno, korištenje tipkovničkog prečaca CTRL+ALT+A automatski će poslati istaknuti upit iz izbornika. U protivnom će korisniku biti prikazan naziv upita, koji će zahtijevati još jedan pritisak tipke Enter za slanje."
},
"prefs_OptionText_dynamic_menu_order_alphabet": {
"message": "Izbornik: redoslijed po abecedi"
},
"prefs_OptionText_dynamic_menu_order_alphabet_info": {
"message": "Ako je označeno, upiti u izborniku bit će poredani abecednim redom."
},
"prefs_OptionText_chatgpt_win_dims_info": {
"message": "Postavite na 0 ako ne želite odrediti veličinu prozora."
},
@ -477,6 +498,9 @@
"chatgpt_btn_model": {
"message": "Koristi trenutni model"
},
"SendingPrompt": {
"message": "Slanje upita..."
},
"AllowedValues": {
"message": "Dopuštene vrijednosti"
},
@ -492,6 +516,9 @@
"prefs_OptionText_owl_warning": {
"message": "Čini se da barem jedan od vaših računa koristi dodatak Owl for Exchange. Postoji poznati problem između Thunderbirda i Owl, koji se trenutno rješava. Trenutačno možete koristiti ThunderAI dok sastavljate e-poruke, ali ne i dok ih čitate."
},
"prefs_OptionText_chatgpt_web_model_tooltip": {
"message": "Pritisnite vrijednost da biste je postavili."
},
"prompt_reply_full_text": {
"message": "Odgovori na sljedeću e-poruku. Odgovorit samo s potrebnim tekstom i bez dodatnih komentara ili drugog teksta."
},
@ -516,8 +543,11 @@
"prompt_classify_full_text": {
"message": "Klasificiraj sljedeći tekst u smislu ljubaznosti, topline, formalnosti, asertivnosti, uvredljivosti dajući postotak za svaku kategoriju. Odgovori samo kategorijom i ocijeni bez dodatnih komentara ili drugog teksta."
},
"prompt_summarize_this_full_text": {
"message": "Sažmi sljedeću e-poruku u popis s točkama."
},
"prompt_translate_this_full_text": {
"message": "Prevedite donju e-poštu na {%thunderai_translate_lang%}.\n\nPravila:\n- Prevedite i predmet i tijelo e-pošte.\n- Vratite rezultat kao JSON objekt s tri polja: \"subject\", \"body\" i \"status\".\n- Ako je prijevod izvršen, status je jedan 1.\n- Ako je e-pošta napisana na jednom od ovih jezika \"{%thunderai_translate_exclude_lang%}\" ili na jeziku {%thunderai_translate_lang%}, vratite prazan niz za tijelo i predmet i postavite status na -1.\n- Nemojte dodavati objašnjenja, bilješke ili bilo kakav tekst izvan JSON-a.\n\nPredmet e-pošte: {%mail_subject%}\n\nTijelo e-pošte: {%mail_html_body%}\n\nGenerirajte odgovor isključivo u JSON formatu. Izlaz treba biti samo JSON objekt. Evo primjera JSON formata koji treba koristiti:\n{\n\"subject\": \"subject translation\",\n\"body\": \"body translation\",\n\"status\": \"status result\"\n}"
"message": "Prevedi sljedeću e-poruku na"
},
"prompt_this_full_text": {
"message": "Odgovori samo s potrebnim tekstom i bez dodatnih komentara ili drugog teksta."
@ -651,6 +681,9 @@
"google_gemini_api_request_failed": {
"message": "Google Gemini API zahtjev nije uspio"
},
"google_gemini_api_connecting": {
"message": "Pokušaj povezivanja na Google Gemini pomoću dostavljenog API ključa"
},
"google_gemini_empty_apikey": {
"message": "Niste dodali API ključ za Google Gemini API. Unesite jedan na stranicu s mogućnostima."
},
@ -679,7 +712,7 @@
"message": "Dodaj novi kalendarski događaj"
},
"prompt_get_calendar_event_full_text": {
"message": "Izdvoji sve relevantne detalje potrebne za generiranje kalendarskog događaja iz sljedećeg teksta. Izdvojene informacije trebaju uključivati:\n- Naslov događaja\n- Datum i vrijeme početka (uključujući vremensku zonu, ako je navedeno)\n- Datum i vrijeme završetka (uključujući vremensku zonu, ako je navedeno)\n- Cijeli dan (ako je navedeno)\n- Sudionici\nOsiguraj da su podaci oblikovani jasno i dosljedno kako bi se mogli izravno koristiti za stvaranje kalendarskog događaja.\nAko postoje relativne vremenske napomene, smatraj da su datum i vrijeme e-poruke \"{%mail_datetime%}\". Izračunajte datum i vrijeme početka na temelju ove napomene. Ako su izračunati početni datum i vrijeme raniji od \"{%current_datetime%}\", ponovno izračunaj početni datum i vrijeme koristeći \"{%current_datetime%}\" kao osnovu.\nAko trajanje nije navedeno, postavi ga na jedan sat.\nOvo su sudionici: {%author%}, {%recipients%}, {%cc_list%}. Ako je prisutna, isključi moju adresu: {%account_email_address%}.\nAko je događaj cjelodnevni, **endDate** mora biti jedan dan nakon **startDate** s vremenom postavljenim na **\"T000000\"**.\nAko ne možeš dobiti jednu ili više potrebnih informacija, odgovori praznim nizom.\nGeneriraj odgovor samo u JSON formatu. Nemoj uključivati nikakav dodatni tekst ili objašnjenja; pruži samo JSON. Ovo je format koji će se koristiti:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"Sažetak kalendarskih događaja ovdje\",\n\"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nOvo je tekst:\"{%mail_text_body_or_selected%}\""
"message": "Izdvoji sve relevantne detalje potrebne za generiranje kalendarskog događaja iz sljedećeg teksta. Izdvojene informacije trebaju uključivati:\n- Naslov događaja\n- Datum i vrijeme početka (uključujući vremensku zonu, ako je navedeno)\n- Datum i vrijeme završetka (uključujući vremensku zonu, ako je navedeno)\n- Cijeli dan (ako je navedeno)\n- Sudionici\nOsiguraj da su podaci oblikovani jasno i dosljedno kako bi se mogli izravno koristiti za stvaranje kalendarskog događaja.\nAko postoje relativne vremenske napomene, smatraj da su datum i vrijeme e-poruke \"{%mail_datetime%}\". Izračunajte datum i vrijeme početka na temelju ove napomene. Ako su izračunati početni datum i vrijeme raniji od \"{%current_datetime%}\", ponovno izračunaj početni datum i vrijeme koristeći \"{%current_datetime%}\" kao osnovu.\nAko trajanje nije navedeno, postavi ga na jedan sat.\nOvo su sudionici: {%author%}, {%recipients%}, {%cc_list%}. Ako je prisutna, isključi moju adresu: {%account_email_address%}.\nAko ne možeš dobiti jednu ili više potrebnih informacija, odgovori praznim nizom.\nGeneriraj odgovor samo u JSON formatu. Nemoj uključivati nikakav dodatni tekst ili objašnjenja; pruži samo JSON. Ovo je format koji će se koristiti:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"Sažetak kalendarskih događaja ovdje\",\n\"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nOvo je tekst:\"{%selected_text%}\""
},
"prefs_OptionText_get_calendar_event": {
"message": "Dodaj novi kalendarski događaj iz odabranog teksta"
@ -720,6 +753,9 @@
"calendar_opening_dialog_error": {
"message": "Pogreška pri otvaranju dijaloškog okvira kalendarskog događaja"
},
"sparks_not_installed": {
"message": "ThunderAI Sparks nije instaliran!"
},
"prefs_OptionText_add_tags_auto": {
"message": "Dodajte oznake automatski"
},
@ -741,7 +777,7 @@
"placeholder_thunderai_def_sign": {
"message": "Zadani potpis kako je određeno u mogućnostima ThunderAI."
},
"placeholder_thunderai_def_lang": {
"thunderai_def_lang": {
"message": "Zadani jezik kako je određeno u mogućnostima ThunderAI."
},
"prefs_OptionText_spamfilter": {
@ -766,7 +802,7 @@
"message": "Prepoznaj neželjenu poštu"
},
"prompt_spamfilter_full_text": {
"message": "Analiziraj sljedeću e-poruku i utvrdi je li neželjena ili ne. Razmotri čimbenike kao što su sumnjive ključne riječi, pretjerani promotivni jezik, zavaravajuće linije predmeta, zahtjevi za osobnim podacima i neobične adrese pošiljatelja.\nNavedi vrijednost od 0 (nije spam) do 100 (neželjena pošta) i objašnjenje od najviše 10 riječi.\nU slučaju nedostatka podataka poruke, postavite vrijednost na 0 (nije spam) i navedite razlog.\nGeneriraj odgovor samo u JSON formatu. Nemoj uključivati nikakav dodatni tekst ili objašnjenje; pruži samo JSON. Ovdje je format koji treba koristiti:\n{\n\"explanation\": \"Kratko objašnjenje vašeg obrazloženja\",\n\"spamValue\": <cijeli broj od 0 do 100>\n}\nOvdje su informacije o e-poruci:\nŠalje: \"{%author%}\"\nNaslov: \"{%mail_subject%}\"\nHtml tijelo: \"{%mail_html_body%}\""
"message": "Analiziraj sljedeću e-poruku i utvrdi je li neželjena ili ne. Razmotri čimbenike kao što su sumnjive ključne riječi, pretjerani promotivni jezik, zavaravajuće linije predmeta, zahtjevi za osobnim podacima i neobične adrese pošiljatelja.\nNavedi vrijednost od 0 (nije spam) do 100 (neželjena pošta) i objašnjenje od najviše 10 riječi.\nU slučaju nedostatka podataka poruke, postavite vrijednost na 0 (nije spam) i navedite razlog.\nGeneriraj odgovor samo u JSON formatu. Nemoj uključivati nikakav dodatni tekst ili objašnjenje; pruži samo JSON. Ovdje je format koji treba koristiti:\n{\n\"spamValue\": <cijeli broj od 0 do 100>,\n\"explanation\": \"Kratko objašnjenje vašeg obrazloženja\"\n}\nOvdje su informacije o e-poruci:\nŠalje: \"{%author%}\"\nNaslov: \"{%mail_subject%}\"\nHtml tijelo: \"{%mail_html_body%}\""
},
"SpamFilter_prompt_prefs_title": {
"message": "Mogućnosti filtera neželjene pošte"
@ -810,10 +846,10 @@
"Report_Date": {
"message": "Datum izvješća"
},
"yes_string": {
"spamfilter_moved": {
"message": "Da"
},
"no_string": {
"spamfilter_not_moved": {
"message": "Ne"
},
"prefs_OptionText_openai_comp_info_remote": {

View file

@ -1,6 +1,6 @@
{
"extensionDescription": {
"message": "Használja a ChatGPT, Google Gemini, Claude vagy Ollama modelleket, hogy még jobbá tegye emailjeit!"
"message": "Használja a ChatGPT, Google Gemini, Anthropic vagy Ollama modelleket, hogy még jobbá tegye emailjeit!"
},
"menu_title": {
"message": "MI"

View file

@ -1,6 +1,6 @@
{
"extensionDescription": {
"message": "Usa ChatGPT, Google Gemini, Claude oppure Ollama per migliorare le tue email!",
"message": "Usa ChatGPT, Google Gemini, Anthropic oppure Ollama per migliorare le tue email!",
"description": "Description of the extension."
},
"menu_title": {
@ -24,11 +24,14 @@
"prompt_classify": {
"message": "Classifica"
},
"prompt_summarize_this": {
"message": "Riassumi"
},
"prompt_translate_this": {
"message": "Traduci"
},
"prompt_this": {
"message": "Invia il testo come prompt"
"message": "Chedi a ChatGPT"
},
"prompt_selection_needed": {
"message": "Per procedere è necessario che selezioni del testo!"
@ -169,7 +172,7 @@
"message": "Riprova"
},
"chatgpt_sendbutton_not_found_error": {
"message": "Premi il pulsante per inviare il prompt."
"message": "Premi il pulsante per inviare il prompt a ChatGPT."
},
"chatgpt_user_not_logged_in": {
"message": "Non sei connesso a ChatGPT. Effettua l'accesso con le tue credenziali, chiudi la finestra di ChatGPT e poi ripeti l'azione che avevi tentato. Rimarrai connesso in seguito."
@ -324,6 +327,9 @@
"chagpt_api_send_button": {
"message": "Modello utilizzato"
},
"chagpt_api_connecting": {
"message": "Tentativo di connessione a OpenAI ChatGPT utilizzando la chiave API fornita"
},
"Debug": {
"message": "Debug"
},
@ -357,6 +363,12 @@
"ollama_empty_model": {
"message": "Non hai scelto un modello per l'API Ollama. Per favore, scegline uno nella pagina delle opzioni."
},
"ollama_api_connecting": {
"message": "Tentativo di connettersi al server locale Ollama usando l'host"
},
"andModel": {
"message": "e il modello"
},
"error_connection_interrupted": {
"message": "La connessione al server è stata interrotta inaspettatamente"
},
@ -387,6 +399,9 @@
"OpenAIComp_empty_model": {
"message": "Non hai scelto un modello per l'API compatibile con OpenAI. Scegline uno nella pagina delle opzioni."
},
"OpenAIComp_api_connecting": {
"message": "Tentativo di connessione al server locale dell'API compatibile con OpenAI utilizzando l'host"
},
"OpenAIComp_api_request_failed": {
"message": "Richiesta all'API compatibile con OpenAI fallita"
},
@ -408,6 +423,12 @@
"prefs_OptionText_dynamic_menu_force_enter_info": {
"message": "Se selezionato, l'utilizzo della combinazione di tasti CTRL+ALT+A invierà automaticamente il prompt evidenziato dal menu. In caso contrario, verrà visualizzato il nome del prompt, richiedendo un'ulteriore pressione del tasto Invio per inviarlo."
},
"prefs_OptionText_dynamic_menu_order_alphabet": {
"message": "Menu: ordina alfabeticamente"
},
"prefs_OptionText_dynamic_menu_order_alphabet_info": {
"message": "Se selezionato, i prompt nel menu verranno ordinati in ordine alfabetico."
},
"prefs_OptionText_chatgpt_win_dims_info": {
"message": "Imposta a 0 se non desideri specificare la dimensione della finestra."
},
@ -477,6 +498,9 @@
"chatgpt_btn_model": {
"message": "Usa il modello corrente"
},
"SendingPrompt": {
"message": "Invio del prompt..."
},
"AllowedValues": {
"message": "Valori consentiti"
},
@ -492,6 +516,9 @@
"prefs_OptionText_owl_warning": {
"message": "Sembra che almeno uno dei tuoi account stia utilizzando il componente aggiuntivo Gufo per Exchange. Esiste un problema noto tra Thunderbird e Gufo, che è attualmente in fase di risoluzione. Al momento, puoi utilizzare ThunderAI durante la composizione delle email, ma non durante la loro lettura."
},
"prefs_OptionText_chatgpt_web_model_tooltip": {
"message": "Fai clic su un valore per impostarlo."
},
"prompt_reply_full_text": {
"message": "Rispondi alla seguente email. Rispondi solo con il testo necessario, senza commenti o altro testo aggiuntivo."
},
@ -516,8 +543,11 @@
"prompt_classify_full_text": {
"message": "Classifica il seguente testo in termini di Cortesia, Calore, Formalità, Assertività, Offensività, indicando una percentuale per ciascuna categoria. Rispondi solo con la categoria e il punteggio, senza commenti aggiuntivi o altro testo."
},
"prompt_summarize_this_full_text": {
"message": "Riepiloga la seguente email in una lista con punti elenco."
},
"prompt_translate_this_full_text": {
"message": "Traduci l'email qui sotto in italiano.\n\nRegole:\n- Traduci sia l'oggetto che il corpo dell'email.\n- Restituisci il risultato come un oggetto JSON con tre campi: \"subject\", \"body\" e \"status\".\n- Se la traduzione viene effettuata, lo stato è uguale a 1.\n- Se l'email è scritta in una di queste lingue \"{%thunderai_translate_exclude_lang%}\" o nella lingua {%thunderai_translate_lang%}, restituisci una stringa vuota per il corpo e l'oggetto e imposta lo stato a 1.\n- Non aggiungere spiegazioni, note o alcun testo al di fuori del JSON.\n\nOggetto dell'email: {%mail_subject%}\n\nCorpo dell'email: {%mail_html_body%}\n\nGenera una risposta esclusivamente in formato JSON. L'output deve essere solo un oggetto JSON. Ecco un esempio del formato JSON da utilizzare:\n{\n\"subject\": \"traduzione oggetto\",\n\"body\": \"traduzione corpo\",\n\"status\": \"risultato stato\"\n}"
"message": "Traduci la seguente email in"
},
"prompt_this_full_text": {
"message": "Rispondi solo con il testo necessario, senza commenti aggiuntivi o altro testo."
@ -529,7 +559,7 @@
"message": "Se selezionato, verrà incluso nel menu un elemento per applicare i tag alle email."
},
"prompt_add_tags": {
"message": "Aggiungi tag"
"message": "Aggiungi tag a questa email"
},
"prompt_add_tags_full_text": {
"message": "Analizza il seguente testo email e genera un array JSON di tag che ne riassumano il contenuto. Utilizza come tag i temi, gli argomenti principali e i descrizioni rilevanti. Assicurati che i tag siano concisi e pertinenti al contenuto dellemail.\nTesto email: {%mail_text_body%}\nConsidera i seguenti dettagli come contesto:\n- Mittente: {%author%}\n- Destinatari: {%recipients%}\n- Lista CC: {%cc_list%}\n- Oggetto dell'email: {%mail_subject%}\nBasati sul testo dellemail e sul contesto per generare i tag, ignorando le informazioni superflue o i dettagli irrilevanti.\nGenera una risposta esclusivamente in formato JSON. Loutput deve essere solo un array JSON di tag, senza alcun commento o testo aggiuntivo. Ecco un esempio del formato JSON da utilizzare:\n{\n\"tags\": [\"tag1\", \"tag2\", \"tag3\", \"tag4\", \"tag5\"]\n}"
@ -651,6 +681,9 @@
"google_gemini_api_request_failed": {
"message": "La richiesta all'API Google Gemini è fallita"
},
"google_gemini_api_connecting": {
"message": "Tentativo di connessione a Google Gemini utilizzando la chiave API fornita"
},
"google_gemini_empty_apikey": {
"message": "Non hai aggiunto una chiave API per l'API Google Gemini. Inseriscine una nella pagina delle opzioni."
},
@ -679,7 +712,7 @@
"message": "Aggiungi un nuovo evento al calendario"
},
"prompt_get_calendar_event_full_text": {
"message": "Estrai tutti i dettagli rilevanti necessari per generare un evento del calendario dal seguente testo. Le informazioni estratte devono includere:\n- Titolo dell'evento\n- Data e ora di inizio (incluso il fuso orario, se specificato)\n- Data e ora di fine (incluso il fuso orario, se specificato)\n- Giornata intera (se menzionato)\n- I partecipanti\nAssicurati che i dati siano formattati in modo chiaro e coerente in modo che possano essere utilizzati direttamente per creare un evento del calendario.\nSe ci sono riferimenti temporali relativi, considera che la data e l'ora dell'email sono \"{%mail_datetime%}\". Calcola la data e l'ora di inizio in base a questo riferimento. Se la data e l'ora di inizio calcolate sono precedenti a \"{%current_datetime%}\", ricalcolale utilizzando \"{%current_datetime%}\" come base.\nSe la durata non è specificata, impostala a un'ora.\nQuesti sono i partecipanti: {%author%}, {%recipients%}, {%cc_list%}. Se presente, escludi il mio indirizzo: {%account_email_address%}.\nSe l'evento dura tutto il giorno, endDate deve essere il giorno successivo a startDate con l'orario impostato su \"T000000\".\nSe non riesci a ottenere una o più delle informazioni richieste, rispondi con una stringa vuota.\nGenera una risposta solo in formato JSON. Non includere testo o spiegazioni aggiuntive; fornisci solo il JSON. Ecco il formato da utilizzare:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"Riassunto evento calendario qui\",\n\"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nEcco il testo: \"{%mail_text_body_or_selected%}\""
"message": "Estrai tutti i dettagli rilevanti necessari per generare un evento del calendario dal seguente testo. Le informazioni estratte devono includere:\n- Titolo dell'evento\n- Data e ora di inizio (incluso il fuso orario, se specificato)\n- Data e ora di fine (incluso il fuso orario, se specificato)\n- Giornata intera (se menzionato)\n- I partecipanti\nAssicurati che i dati siano formattati in modo chiaro e coerente in modo che possano essere utilizzati direttamente per creare un evento del calendario.\nSe ci sono riferimenti temporali relativi, considera che la data e l'ora dell'email sono \"{%mail_datetime%}\". Calcola la data e l'ora di inizio in base a questo riferimento. Se la data e l'ora di inizio calcolate sono precedenti a \"{%current_datetime%}\", ricalcolale utilizzando \"{%current_datetime%}\" come base.\nSe la durata non è specificata, impostala a un'ora.\nQuesti sono i partecipanti: {%author%}, {%recipients%}, {%cc_list%}. Se presente, escludi il mio indirizzo: {%account_email_address%}.\nSe non riesci a ottenere una o più delle informazioni richieste, rispondi con una stringa vuota.\nGenera una risposta solo in formato JSON. Non includere testo o spiegazioni aggiuntive; fornisci solo il JSON. Ecco il formato da utilizzare:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"Riassunto evento calendario qui\",\n\"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nEcco il testo: \"{%selected_text%}\""
},
"prefs_OptionText_get_calendar_event": {
"message": "Aggiungi un nuovo evento al calendario dal testo selezionato"
@ -720,6 +753,9 @@
"calendar_opening_dialog_error": {
"message": "Errore durante l'apertura della finestra di dialogo dell'evento del calendario"
},
"sparks_not_installed": {
"message": "ThunderAI Sparks non installato!"
},
"Subject": {
"message": "Oggetto"
},
@ -748,12 +784,12 @@
"message": "Aggiungi tag solo alle email nella posta in arrivo"
},
"prompt_spamfilter": {
"message": "Analizza per spam"
"message": "Rileva le email di spam"
},
"Moved_to_Spam": {
"message": "Spostato nello spam"
},
"no_string": {
"spamfilter_not_moved": {
"message": "No"
},
"From": {
@ -762,7 +798,7 @@
"prefs_OptionText_btnManageSpamFilterInfo": {
"message": "Gestisci le impostazioni del filtro antispam"
},
"yes_string": {
"spamfilter_moved": {
"message": "Sì"
},
"SpamReport_Title": {
@ -786,11 +822,11 @@
"SpamFilter_info_default": {
"message": "In questa pagina puoi modificare il prompt predefinito utilizzato per rilevare le email di spam."
},
"placeholder_thunderai_def_lang": {
"thunderai_def_lang": {
"message": "Lingua predefinita come impostata nelle opzioni di ThunderAI."
},
"spamfilter_no_reports": {
"message": "Nessun messaggio è stato ancora controllato per lo spam. Qui troverai un elenco degli ultimi 100 report di spam."
"message": "Nessun messaggio è stato ancora controllato per lo spam. Qui troverai un elenco degli ultimi 100 report di spam solo per la sessione corrente."
},
"placeholder_thunderai_def_sign": {
"message": "Firma predefinita come impostata nelle opzioni di ThunderAI."
@ -808,7 +844,7 @@
"message": "Valore soglia per lo spam"
},
"prompt_spamfilter_full_text": {
"message": "Analizza la seguente email e determina se si tratta di spam o meno. Considera fattori come parole chiave sospette, linguaggio promozionale eccessivo, linee oggetto fuorvianti, richieste di informazioni personali e indirizzi del mittente insoliti.\nFornisci un valore da 0 (non spam) a 100 (spam) e una spiegazione di non più di 10 parole.\nIn caso di dati del messaggio mancanti, imposta il valore a 0 (non spam) e fornisci la motivazione.\nGenera una risposta esclusivamente in formato JSON. Non includere alcun testo o spiegazione aggiuntiva; fornisci solo il JSON. Ecco il formato da utilizzare:\n{\n\"explanation\": \"Breve spiegazione del tuo ragionamento\",\n\"spamValue\": <intero da 0 a 100>\n}\nQui ci sono le informazioni sull'email:\nMittente: \"{%author%}\"\nOggetto: \"{%mail_subject%}\"\nCorpo HTML: \"{%mail_html_body%}\""
"message": "Analizza la seguente email e determina se si tratta di spam o meno. Considera fattori come parole chiave sospette, linguaggio promozionale eccessivo, linee oggetto fuorvianti, richieste di informazioni personali e indirizzi del mittente insoliti.\nFornisci un valore da 0 (non spam) a 100 (spam) e una spiegazione di non più di 10 parole.\nIn caso di dati del messaggio mancanti, imposta il valore a 0 (non spam) e fornisci la motivazione.\nGenera una risposta esclusivamente in formato JSON. Non includere alcun testo o spiegazione aggiuntiva; fornisci solo il JSON. Ecco il formato da utilizzare:\n{\n\"spamValue\": <intero da 0 a 100>,\n\"explanation\": \"Breve spiegazione del tuo ragionamento\"\n}\nQui ci sono le informazioni sull'email:\nMittente: \"{%author%}\"\nOggetto: \"{%mail_subject%}\"\nCorpo HTML: \"{%mail_html_body%}\""
},
"prefs_OptionText_add_tags_auto_force_existing_Info": {
"message": "Se selezionato, l'IA aggiungerà solo i tag esistenti e non creerà nuovi tag."
@ -828,6 +864,12 @@
"placeholder_account_email_address": {
"message": "Indirizzo email dell'account"
},
"context_menu_mzta-spamfilter": {
"message": "Analizza come spam"
},
"context_menu_mzta-add-tags": {
"message": "Aggiungi etichette"
},
"noActiveCalendar": {
"message": "Non è stato trovato alcun calendario modificabile!"
},
@ -837,6 +879,9 @@
"btn_show_differences": {
"message": "Mostra le differenze"
},
"apiwebchat_show_differences": {
"message": "Mostra le differenze"
},
"apiwebchat_error": {
"message": "Errore"
},
@ -849,9 +894,21 @@
"prefs_OptionText_calendar_enforce_timezone": {
"message": "Forza il fuso orario specificato"
},
"prefs_OptionText_add_tags_context_menu_Info": {
"message": "Se selezionato, la voce \"Aggiungi etichette\" verrà mostrata facendo clic con il pulsante destro del mouse su un'email nell'elenco dei messaggi."
},
"apiwebchat_use_this_answer": {
"message": "Usa questa risposta"
},
"prefs_OptionText_spamfilter_context_menu_Info": {
"message": "Se selezionato, la voce \"Analizza come spam\" verrà mostrata facendo clic con il pulsante destro del mouse su un'email nell'elenco dei messaggi."
},
"prefs_OptionText_spamfilter_context_menu": {
"message": "Mostra la voce \"Analizza come spam\" nel menu contestuale"
},
"prefs_OptionText_add_tags_context_menu": {
"message": "Mostra la voce \"Aggiungi etichette\" nel menu contestuale"
},
"apiwebchat_info": {
"message": "Informazioni"
},
@ -876,6 +933,12 @@
"CORS_alternative_1": {
"message": "Problemi con la configurazione di CORS?"
},
"CORS_alternative_2": {
"message": "Premi il pulsante qui sotto per concedere il permesso <all_urls> ed evitare qualsiasi problema legato a CORS."
},
"CORS_give_allurls_perm": {
"message": "Concedi il permesso \"tutti gli URL\""
},
"remember_CORS": {
"message": "Ricorda, devi configurare le impostazioni CORS sul server!"
},
@ -1015,49 +1078,46 @@
"message": "HTML selezionato"
},
"prefs_Connection_type_Anthropic_API": {
"message": "API Claude"
"message": "API Anthropic"
},
"ask_anthropic_api_permission_1": {
"message": "Per utilizzare l'integrazione con l'API di Claude, è necessario concedere l'autorizzazione richiesta."
},
"ask_openai_api_permission_1": {
"message": "Per utilizzare l'integrazione con l'API di OpenAI, è necessario concedere l'autorizzazione richiesta."
"message": "Per utilizzare l'integrazione con l'API di Anthropic, è necessario concedere l'autorizzazione richiesta."
},
"Anthropic_Version_Info": {
"message": "OBBLIGATORIO. Non modificare questo valore a meno che tu non sappia esattamente cosa stai facendo. Maggiori informazioni su:"
},
"Anthropic_Models": {
"message": "Modelli di Claude"
"message": "Modelli di Anthropic"
},
"Anthropic_Models_Fetch": {
"message": "Aggiorna l'elenco dei modelli di Claude"
"message": "Aggiorna l'elenco dei modelli di Anthropic"
},
"Anthropic_Models_Error_fetching": {
"message": "Errore durante il tentativo di recupero dei modelli di Claude"
"message": "Errore durante il tentativo di recupero dei modelli di Anthropic"
},
"Anthropic_Version": {
"message": "Versione API di Claude"
"message": "Versione API di Anthropic"
},
"prefs_Anthropic_API_Key": {
"message": "Chiave API di Claude"
"message": "Chiave API di Anthropic"
},
"anthropic_empty_model": {
"message": "Non hai selezionato un modello per l'API di Claude. Scegline uno nella pagina delle opzioni."
"message": "Non hai selezionato un modello per l'API di Anthropic. Scegline uno nella pagina delle opzioni."
},
"prefs_OpenAIComp_AvailableServices_Info": {
"message": "Scegli uno dei servizi disponibili per l'API compatibile con OpenAI oppure inseriscine uno manualmente."
},
"prefs_OptionText_anthropic_max_tokens": {
"message": "Numero massimo di token"
"message": "Numero massimo di token di Anthropic"
},
"prefs_OptionText_anthropic_max_tokens_Info": {
"message": "Il numero massimo di token da generare nell'elaborazione. Il conteggio dei token del tuo prompt, sommato a max_tokens, non può superare la lunghezza di contesto del modello."
},
"anthropic_empty_apikey": {
"message": "Non hai aggiunto una chiave per l'API di Claude. Inseriscila nella pagina delle opzioni."
"message": "Non hai aggiunto una chiave per l'API di Anthropic. Inseriscila nella pagina delle opzioni."
},
"anthropic_empty_version": {
"message": "Non hai aggiunto la versione per l'API di Claude. Inseriscila nella pagina delle opzioni."
"message": "Non hai aggiunto la versione per l'API di Anthropic. Inseriscila nella pagina delle opzioni."
},
"_api_connecting": {
"message": "Tentativo di connessione a $api_string$ utilizzando la seguente configurazione...",
@ -1109,7 +1169,7 @@
}
},
"anthropic_api_request_failed": {
"message": "Richiesta all'API di Claude non riuscita"
"message": "Richiesta all'API di Anthropic non riuscita"
},
"prefs_OptionText_reply_type_Info": {
"message": "Questa è la modalità di risposta predefinita che verrà utilizzata quando rispondi a un'email. Puoi scegliere l'altra modalità nella finestra di risposta."
@ -1187,7 +1247,7 @@
"message": "I segnaposto di dati esistenti con lo stesso ID verranno sovrascritti. I segnaposto con ID nuovi verranno aggiunti."
},
"prompt_reply_custom_command": {
"message": "Rispondi con istruzioni aggiuntive..."
"message": "Rispondi con istruzioni aggiuntive"
},
"prompt_reply_custom_command_full_text": {
"message": "Rispondi alla seguente email \"{%mail_text_body%}\". {%additional_text%}. Rispondi solo con il testo necessario, senza commenti aggiuntivi o altro testo."
@ -1200,615 +1260,5 @@
},
"OpenAIComp_ClearModelsList_Confirm": {
"message": "Sei sicuro di voler cancellare lelenco dei modelli? Questa azione non può essere annullata."
},
"prefs_OptionText_add_tags_auto_uselist": {
"message": "Usa solo questi tag"
},
"prefs_OptionText_add_tags_auto_uselist_Info": {
"message": "Se selezionato, l'IA aggiungerà solo i tag dall'elenco qui sotto."
},
"prefs_OptionText_add_tags_auto_uselist_list_Info": {
"message": "Lelenco deve contenere almeno un tag. Aggiungi un tag per riga o separato da una virgola."
},
"prompt_add_tags_use_list": {
"message": "Usa solo i tag in questo elenco separato da virgole"
},
"prefs_OptionText_add_tags_use_specific_integration_Info": {
"message": "Se selezionato, il Modello e lAPI specificati qui sotto verranno utilizzati per aggiungere tag alle email, indipendentemente da quello scelto nella pagina delle opzioni di ThunderAI."
},
"placeholder_mail_attachments_info": {
"message": "Informazioni sugli allegati nellemail"
},
"prefs_OptionText_use_specific_integration": {
"message": "Usa Modello e API specifici"
},
"prefs_OptionText_spamfilter_use_specific_integration_Info": {
"message": "Se selezionato, il Modello e lAPI specificati qui sotto verranno utilizzati per il filtro antispam, indipendentemente da quello scelto nella pagina delle opzioni di ThunderAI."
},
"chatgpt_click_force_completion": {
"message": "Sembra che non sia possibile verificare se ChatGPT ha terminato. Clicca qui per forzare il completamento del lavoro."
},
"warn_API_needed": {
"message": "Per utilizzare questa funzionalità, è necessaria unintegrazione API invece dellintegrazione Web di ChatGPT. Puoi definire una specifica API nella pagina delle impostazioni della funzionalità selezionando prima la casella di controllo qui sopra e poi cliccando il pulsante a sinistra."
},
"prefs_google_gemini_thinking_budget": {
"message": "Thinking Budget"
},
"prefs_google_gemini_thinking_budget_Info": {
"message": "Definisci il numero di token da utilizzare per il ragionamento. Lascia questo campo vuoto se il modello selezionato non supporta il ragionamento o se desideri utilizzare il metodo predefinito. Inserisci 0 per disabilitare il ragionamento oppure -1 per abilitarlo in modo dinamico."
},
"SelectAll": {
"message": "Seleziona tutto"
},
"DeselectAll": {
"message": "Deseleziona tutto"
},
"Anthropic_System_Prompt": {
"message": "System Prompt"
},
"Anthropic_System_Prompt_Info": {
"message": "Puoi migliorare le prestazioni di Claude usando un System Prompt per assegnargli un ruolo. Questa tecnica, chiamata role prompting, è il modo più efficace per utilizzare i system prompt con Claude. Il ruolo appropriato può trasformare Claude da assistente generico a un vero esperto virtuale nel tuo settore."
},
"Optional_Permission_Denied_Model_Fetching": {
"message": "Hai negato lautorizzazione necessaria per recuperare i modelli per questa integrazione."
},
"prompt_string": {
"message": "Prompt"
},
"placeholder_mail_headers": {
"message": "Intestazioni email"
},
"reset": {
"message": "Reset"
},
"prefs_chatgpt_api_temperature_Info": {
"message": "Quale temperatura di campionamento utilizzare, tra 0 e 2. Valori più alti come 0,8 renderanno l'output più casuale, mentre valori più bassi come 0,2 lo renderanno più focalizzato e deterministico."
},
"prefs_ollama_temperature_Info": {
"message": "La temperatura del modello. Aumentare la temperatura farà sì che il modello risponda in modo più creativo. Il valore predefinito è 0,8. Si consiglia di utilizzare valori compresi tra 0 e 1."
},
"prefs_api_temperature": {
"message": "Temperatura"
},
"prefs_openai_comp_temperature_Info": {
"message": "Quale temperatura di campionamento utilizzare, tra 0 e 2. Valori più alti come 0,8 renderanno l'output più casuale, mentre valori più bassi come 0,2 lo renderanno più focalizzato e deterministico."
},
"prefs_google_gemini_temperature_Info": {
"message": "Questo parametro deve essere un numero compreso tra 0.0 e 2.0. Questo valore controlla la casualità dell'output. Il valore predefinito varia a seconda del modello. Lascialo vuoto per evitare di impostare il parametro nella chiamata API."
},
"prefs_anthropic_temperature_Info": {
"message": "Quantità di casualità iniettata nella risposta. Il valore predefinito è 1,0. L'intervallo va da 0,0 a 1,0. Utilizza una temperatura più vicina a 0,0 per compiti analitici o a scelta multipla, e più vicina a 1,0 per compiti creativi e generativi. Nota che, anche con una temperatura di 0,0, i risultati non saranno completamente deterministici."
},
"placeholder_mail_text_body_or_selected": {
"message": "Corpo dell'email o testo selezionato"
},
"placeholder_mail_html_body_or_selected": {
"message": "Corpo dell'email o HTML selezionato"
},
"prefs_OptionText_chatgpt_web_load_wait_time": {
"message": "Tempo di attesa caricamento pagina"
},
"prefs_OptionText_chatgpt_web_load_wait_time_info": {
"message": "Tempo di attesa in millisecondi per il caricamento della pagina di ChatGPT prima di caricare i contenuti aggiuntivi. Il valore predefinito è 1000ms. Se viene definito un Custom GPT o un Progetto, verranno aggiunti ulteriori 1000ms a questo valore."
},
"prompt_get_calendar_event_from_clipboard": {
"message": "Aggiungi un evento a calendario dagli appunti"
},
"clipboard_read_error": {
"message": "Impossibile leggere il contenuto copiato negli appunti. Verifica i permessi."
},
"clipboard_empty_error": {
"message": "Gli appunti sono vuoti. Copia prima del testo."
},
"clipboard_permission_denied": {
"message": "Accesso agli appunti negato. Riattiva la funzione nelle impostazioni per concedere il permesso."
},
"clipboard_permission_error": {
"message": "Errore durante la richiesta dei permessi per gli appunti. Riprova."
},
"prefs_OptionText_get_calendar_event_from_clipboard": {
"message": "Ottieni un evento del calendario dagli appunti"
},
"prefs_OptionText_get_calendar_event_from_clipboard_Info": {
"message": "Mostra una voce di menu aggiuntiva per creare eventi di calendario dal contenuto di testo negli appunti."
},
"Summarize_prompt_prefs_title": {
"message": "Impostazioni riassunto"
},
"prompt_summarize": {
"message": "Riassumi"
},
"prompt_summarize_full_text": {
"message": "Fornisci un riassunto conciso dei seguenti messaggi email. Il riassunto deve essere di massimo 3-5 frasi e deve catturare i punti principali. Scrivi in paragrafi semplici, senza elenchi puntati, liste o formattazione markdown.\n\n"
},
"prompt_summarize_email_template": {
"message": "Template riassunto email"
},
"prompt_summarize_email_template_full_text": {
"message": "Da: {%author%}\nA: {%recipients%}\nCC: {%cc_list%}\nOggetto: {%mail_subject%}\nData: {%mail_datetime%}\nAllegati:\n{%mail_attachments_info%}\n\nCorpo del messaggio:\n{%mail_text_body%}"
},
"prompt_summarize_email_separator": {
"message": "Separatore email"
},
"prompt_summarize_email_separator_full_text": {
"message": "\n\n---------- PROSSIMA EMAIL ----------\n\n"
},
"prefs_OptionText_Summarize_infoline2": {
"message": "Puoi modificare il prompt come desideri: il primo campo è il prompt principale, il secondo è il modello per la singola email. L'elenco delle email sarà aggiunto al prompt principale. Le email saranno divise dal separatore specificato nel terzo campo."
},
"prefs_OptionText_Summarize_main_prompt": {
"message": "Il prompt principale che descrive l'attività da eseguire su tutte le email selezionate:"
},
"prefs_OptionText_Summarize_email_template": {
"message": "Il modello per la singola email:"
},
"prefs_OptionText_Summarize_email_separator": {
"message": "Il separatore tra le email:"
},
"prefs_OptionText_get_calendar_event_use_specific_integration_Info": {
"message": "Se selezionato, il Modello e l'API specificati di seguito verranno utilizzati per creare gli eventi di calendario, indipendentemente da quelli scelti nella pagina delle opzioni di ThunderAI."
},
"prefs_OptionText_summarize": {
"message": "Riassumi email"
},
"prefs_OptionText_summarize_use_specific_integration_Info": {
"message": "Se selezionato, il Modello e l'API specificati di seguito verranno utilizzati per riassumere le email, indipendentemente da quelli scelti nella pagina delle opzioni di ThunderAI."
},
"prefs_OptionText_summarize_Info": {
"message": "Se selezionato, aggiunge un'opzione al menu contestuale per riassumere le email."
},
"prefs_OptionText_btnManageSummarizeInfo": {
"message": "Gestisci le impostazioni di riassunto"
},
"Summarize_PageTitle": {
"message": "Gestisci Impostazioni di Riassunto"
},
"Summarize_info_default": {
"message": "In questa pagina puoi modificare il prompt predefinito utilizzato per riassumere le email."
},
"Summarize_prompt_text_title": {
"message": "Testo del prompt attuale"
},
"prefs_OptionText_spamfilter_show_msg_panel": {
"message": "Mostra pannello segnalazione spam"
},
"prefs_OptionText_spamfilter_show_msg_panel_Info": {
"message": "Se selezionato, verrà mostrato un pannello con il report spam sopra il messaggio."
},
"Spam": {
"message": "Spam"
},
"Valid": {
"message": "Valido"
},
"CORS_alternative_2_new": {
"message": "Premi il pulsante qui sotto per concedere le autorizzazioni all'host corrente ed evitare problemi di CORS."
},
"CORS_give_host_perm": {
"message": "Concedi l'autorizzazione all'host corrente"
},
"CORS_localhost_warn": {
"message": "Se stai utilizzando localhost o 127.0.0.1 perché il server IA è ospitato sul tuo PC, è necessaria l'autorizzazione <all_urls>."
},
"customPrompts_export_include_api_settings": {
"message": "Vuoi includere le impostazioni API nell'esportazione? Attenzione: anche la Chiave API verrà salvata nel file!"
},
"prefs_OptionText_calendar_no_selection": {
"message": "Non chiedere di selezionare del testo"
},
"prefs_OptionText_calendar_no_selection_Info": {
"message": "Se questa opzione viene attivata, non sarà necessario selezionare del testo. Verrà utilizzato l'intero corpo del messaggio per creare l'evento di calendario."
},
"customPrompts_btnCopy": {
"message": "Copia"
},
"copy_text": {
"message": "copia"
},
"spam_check_in_progress": {
"message": "Controllo spam in corso..."
},
"prefs_THStats_1": {
"message": "Desideri delle belle statistiche sulle tue email?"
},
"prefs_THStats_2": {
"message": "Clicca qui! Prova ThunderStats!"
},
"prefs_OptionText_calendar_no_selection_missing_placeholder": {
"message": "Il prompt deve contenere il segnaposto {%mail_text_body_or_selected%} o {%mail_html_body_or_selected%} per abilitare questa opzione. Per favore, aggiungi uno di questi segnaposto al prompt o ripristina quello predefinito."
},
"antispam_by": {
"message": "Antispam di"
},
"prefs_doc_title": {
"message": "Documentazione"
},
"prefs_doc_setup_guide": {
"message": "Guide di configurazione"
},
"prefs_doc_custom_prompt_tutorial": {
"message": "Tutorial Prompt Personalizzato"
},
"prefs_doc_open_welcome": {
"message": "Apri la Pagina di Benvenuto"
},
"prefs_OptionText_chatgpt_win_pos_text": {
"message": "Posizione finestra della chat AI"
},
"prefs_OptionText_chatgpt_win_top": {
"message": "Alto"
},
"prefs_OptionText_chatgpt_win_left": {
"message": "Sinistra"
},
"prefs_chatgpt_win_save_position": {
"message": "Salva automaticamente la posizione della finestra quando si usa il pulsante chiudi."
},
"prefs_chatgpt_win_position_info": {
"message": "Lascia vuoto per usare la posizione di default."
},
"show_in": {
"message": "Mostra in"
},
"show_in_popup": {
"message": "Solo popup"
},
"show_in_context": {
"message": "Solo menu contestuale"
},
"show_in_both": {
"message": "Entrambi"
},
"webchat_save_as_summary": {
"message": "Salva come Riepilogo"
},
"prefs_storage_title": {
"message": "Archiviazione"
},
"prefs_storage_info": {
"message": "L'archiviazione viene utilizzata per salvare informazioni sul punteggio di spam, i riepiloghi e le traduzioni di ogni messaggio."
},
"prefs_storage_size": {
"message": "Dimensione archiviazione"
},
"prefs_storage_clear_button": {
"message": "Svuota Archiviazione"
},
"prefs_storage_clear_confirm": {
"message": "Sei sicuro di voler cancellare tutti i dati memorizzati (riepiloghi, segnalazioni spam, traduzioni)? L'azione è irreversibile."
},
"prefs_storage_clear_done": {
"message": "$COUNT$ elementi cancellati.",
"placeholders": {
"count": {
"content": "$1"
}
}
},
"prefsInfoDesc_7": {
"message": "Per utilizzare le API di Google Gemini, è necessario avere una chiave API (API Key) di Google Gemini e scegliere un modello."
},
"prefsInfoDesc_8": {
"message": "Per utilizzare le API di Claude, è necessario avere una chiave API (API Key) di Anthropic Claude e scegliere un modello."
},
"placeholder_mail_full_headers": {
"message": "Tutte le intestazioni email"
},
"prefs_OptionText_hide_thinking": {
"message": "Nascondi l'output del ragionamento come impostazione predefinita"
},
"prefs_OptionText_thinking_summary": {
"message": "Ragionamento"
},
"prefs_OptionText_hide_thinking_info": {
"message": "Controlla lo stato iniziale del ragionamento visualizzato sopra la risposta. Se selezionato, il ragionamento è compresso di default e può essere aperto con un clic. Se deselezionato, è invece aperto di default e può essere compresso con un clic. Il contenuto del ragionamento viene sempre conservato."
},
"placeholder_thunderai_translate_lang": {
"message": "La lingua da utilizzare nella traduzioni delle email."
},
"placeholder_thunderai_translate_exclude_lang": {
"message": "I codici delle lingue da non tradurre se rilevate."
},
"SpamFilter_skip_addresses_title": {
"message": "Elenco di esclusione indirizzi email"
},
"SpamFilter_skip_addresses_infoline": {
"message": "Le email provenienti da questi indirizzi non saranno inviate all'IA per l'analisi antispam."
},
"SpamFilter_skip_addresses_infoline2": {
"message": "Aggiungi un indirizzo email per riga, oppure separali con una virgola."
},
"spamfilter_skip_addresses_explanation": {
"message": "Il mittente è incluso nell'elenco di esclusione antispam degli indirizzi email."
},
"prefs_OptionText_spamfilter_skip_addressbook": {
"message": "Salta gli indirizzi in rubrica"
},
"prefs_OptionText_spamfilter_skip_addressbook_Info": {
"message": "Se selezionato, le email provenienti da mittenti presenti nelle tue rubriche non verranno inviate all'IA per l'analisi antispam."
},
"spamfilter_skip_addressbook_explanation": {
"message": "Il mittente è un contatto presente in rubrica."
},
"addressbook_permission_denied": {
"message": "Il permesso di accesso alla rubrica è stato negato. Abilita nuovamente la funzione per concedere il permesso."
},
"addressbook_permission_error": {
"message": "Errore durante la richiesta del permesso per la rubrica. Per favore, riprova."
},
"apiwebchat_done": {
"message": "Fatto!"
},
"prefs_OptionText_anthropic_extended_thinking_budget": {
"message": "Budget per il pensiero esteso (token)"
},
"prefs_OptionText_anthropic_extended_thinking_budget_Info": {
"message": "Numero massimo di token che il modello può utilizzare per il pensiero esteso. Imposta a 0 per disabilitare. Quando abilitato, il valore della temperatura viene ignorato dall'API di Claude."
},
"prefs_ollama_format_json": {
"message": "Forza output JSON"
},
"prefs_ollama_format_json_Info": {
"message": "Se selezionato, Ollama sarà forzato a restituire una risposta JSON valida. Questa opzione funziona solo con i modelli che supportano l'output strutturato."
},
"prefs_specific_api_indicator": {
"message": "Utilizzando $1",
"placeholders": {
"1": {
"content": "$1"
}
}
},
"prefs_OptionText_auto_summary": {
"message": "Abilita riassunto IA automatico per l'anteprima messaggi"
},
"prefs_OptionText_auto_summary_Info": {
"message": "Se selezionato, ThunderAI genererà e visualizzerà automaticamente dei riassunti IA sopra i messaggi quando vengono aperti. Nota: questo comporterà l'invio immediato di ogni messaggio visualizzato al servizio IA configurato."
},
"auto_summary_title": {
"message": "Riassunto ThunderAI"
},
"auto_summary_generating": {
"message": "Generazione riassunto IA..."
},
"auto_summary_failed": {
"message": "Impossibile generare il riassunto IA. Verifica le impostazioni e riprova."
},
"prefs_OptionText_summarize_auto": {
"message": "Riassumi messaggi automaticamente"
},
"prefs_OptionText_summarize_auto_Info": {
"message": "Scegli se generare automaticamente i riassunti durante la visualizzazione dei messaggi. Richiede una connessione basata su API (non ChatGPT Web)."
},
"prefs_OptionText_summarize_display_mode": {
"message": "Visualizza riassunto in"
},
"prefs_OptionText_summarize_display_mode_Info": {
"message": "Scegli dove visualizzare il risultato del riassunto. La modalità 'Inline' mostra un banner direttamente nel pannello del messaggio. La modalità 'Finestra chat' apre la finestra della chat IA."
},
"prefs_OptionText_summarize_max_display_length": {
"message": "Lunghezza massima visualizzata"
},
"prefs_OptionText_summarize_max_display_length_Info": {
"message": "Numero massimo di caratteri da mostrare nel riassunto inline. Imposta a 0 per nessun limite."
},
"prefs_OptionText_summarize_strip_formatting": {
"message": "Rimuovi formattazione"
},
"prefs_OptionText_summarize_strip_formatting_Info": {
"message": "Rimuove la formattazione HTML e Markdown dal riassunto generato dall'IA, mostrando solo testo semplice."
},
"summarize_see_more": {
"message": "Mostra altro"
},
"summarize_see_less": {
"message": "Mostra meno"
},
"summarize_title": {
"message": "Panoramica ThunderAI"
},
"get_ai_summary": {
"message": "Riassunto IA"
},
"summarize_collapse": {
"message": "Comprimi riassunto"
},
"summarize_generating": {
"message": "Generazione riassunto..."
},
"summarize_error": {
"message": "Impossibile generare il riassunto"
},
"summarize_click_to_generate": {
"message": "Clicca qui per generare un riassunto"
},
"summarize_chatgpt_web_not_supported": {
"message": "Il riassunto automatico richiede una connessione basata su API. Configura una connessione API nelle impostazioni di ThunderAI."
},
"summarize_refresh": {
"message": "Aggiorna riassunto"
},
"spamfilter_refresh": {
"message": "Aggiorna rapporto spam"
},
"spamfilter_delete": {
"message": "Elimina rapporto spam"
},
"summarize_delete": {
"message": "Elimina riassunto"
},
"generic_error_dismiss": {
"message": "Ignora"
},
"prefs_OptionText_translate": {
"message": "Traduci email"
},
"prefs_OptionText_translate_use_specific_integration_Info": {
"message": "Se selezionato, per la traduzione delle email verranno utilizzati il Modello e l'API specificati sotto, indipendentemente da quanto scelto nelle opzioni generali di ThunderAI."
},
"prefs_OptionText_translate_Info": {
"message": "Se selezionato, aggiunge un pulsante di traduzione nel corpo del messaggio."
},
"prefs_OptionText_btnManageTranslateInfo": {
"message": "Gestisci impostazioni traduzione"
},
"Translate_PageTitle": {
"message": "Gestisci Impostazioni Traduzione"
},
"Translate_info_default": {
"message": "In questa pagina puoi modificare il prompt predefinito utilizzato per tradurre le email."
},
"Translate_prompt_text_title": {
"message": "Testo del prompt attuale"
},
"Translate_prompt_prefs_title": {
"message": "Opzioni Traduzione"
},
"prefs_OptionText_translate_auto": {
"message": "Traduci messaggi automaticamente"
},
"prefs_OptionText_action_auto_disabled": {
"message": "Disabilitato"
},
"prefs_OptionText_action_auto_manual": {
"message": "Solo pulsante manuale"
},
"prefs_OptionText_action_auto_automatic": {
"message": "All'apertura dell'email"
},
"prefs_OptionText_translate_auto_Info": {
"message": "Scegli quando tradurre i messaggi: disabilitato, solo al click del pulsante, o automaticamente all'apertura di un messaggio."
},
"prefs_OptionText_display_mode_inline": {
"message": "Pannello messaggio (inline)"
},
"prefs_OptionText_display_mode_webchat": {
"message": "Finestra chat"
},
"prefs_OptionText_translate_max_display_length": {
"message": "Lunghezza massima della traduzione visualizzata"
},
"prefs_OptionText_translate_max_display_length_Info": {
"message": "Numero massimo di caratteri mostrati nella traduzione inline. 0 = nessun limite. Se impostato, il testo più lungo verrà troncato con un interruttore 'Mostra altro'."
},
"translate_see_more": {
"message": "Mostra altro"
},
"translate_see_less": {
"message": "Mostra meno"
},
"prefs_OptionText_translate_lang": {
"message": "Lingua di destinazione traduzione"
},
"prefs_OptionText_translate_lang_Info": {
"message": "Lingua in cui tradurre le email. Se vuoto, utilizza l'impostazione della lingua predefinita."
},
"prefs_OptionText_translate_exclude_lang": {
"message": "Escludi lingue"
},
"prefs_OptionText_translate_exclude_lang_Info": {
"message": "Elenco di codici lingua separati da virgola (es. en, fr, it) da saltare per la traduzione automatica. Se l'email è in una di queste lingue, non verrà tradotta automaticamente o il pulsante manuale non sarà mostrato."
},
"prefs_OptionText_Translate_main_prompt": {
"message": "Prompt che descrive l'attività di traduzione:"
},
"translate_generating": {
"message": "Traduzione in corso..."
},
"translate_click_to_generate": {
"message": "Clicca qui per tradurre questa email"
},
"get_ai_translation": {
"message": "Traduzione IA"
},
"translate_chatgpt_web_not_supported": {
"message": "La traduzione automatica richiede una connessione basata su API. Configura una connessione API nelle impostazioni di ThunderAI."
},
"translate_refresh": {
"message": "Aggiorna traduzione"
},
"translate_delete": {
"message": "Elimina traduzione"
},
"translate_banner_title": {
"message": "Traduzione IA"
},
"translate_error": {
"message": "Traduzione fallita."
},
"translate_no_language_configured": {
"message": "La lingua di traduzione non è configurata. Imposta una lingua nelle impostazioni di Traduzione o una lingua predefinita nelle impostazioni Generali."
},
"translate_skipped": {
"message": "Traduzione saltata: lingua esclusa o identica alla destinazione."
},
"spam_badge_tooltip": {
"message": "Punteggio spam — Clicca per vedere la spiegazione"
},
"summary_by": {
"message": "Riassunto da"
},
"translate_by": {
"message": "Traduzione da"
},
"prefs_OptionText_action_auto_batch": {
"message": "Alla ricezione dell'email"
},
"placeholder_string": {
"message": "Segnaposto"
},
"menu_order_title": {
"message": "Ordine Menu"
},
"menu_order_popup_list_title": {
"message": "Menu Popup"
},
"menu_order_context_list_title": {
"message": "Menu Contestuale"
},
"menu_order_saved": {
"message": "Ordine menu salvato!"
},
"menu_order_tab_reading": {
"message": "Lettura"
},
"menu_order_tab_composing": {
"message": "Composizione"
},
"menu_order_badge_default": {
"message": "Predefinito"
},
"menu_order_badge_special": {
"message": "Speciale"
},
"menu_order_badge_custom": {
"message": "Personalizzato"
},
"menu_order_type_reading": {
"message": "Lettura"
},
"menu_order_type_composing": {
"message": "Composizione"
},
"menu_order_type_always": {
"message": "Sempre"
},
"menu_order_btn_label": {
"message": "Gestisci impostazioni ordine menu"
},
"menu_order_info": {
"message": "Trascina gli elementi per riordinarli. Usa l'interruttore per mostrare o nascondere gli elementi in ogni menu."
},
"menu_order_active_items": {
"message": "Elementi visibili"
},
"menu_order_hidden_items": {
"message": "Elementi nascosti"
},
"menu_order_icon_label": {
"message": "Scegli un'icona"
},
"menu_order_icon_none": {
"message": "(nessuna)"
}
}

File diff suppressed because it is too large Load diff

View file

@ -1 +0,0 @@
{}

View file

@ -1,5 +0,0 @@
{
"extensionDescription": {
"message": "Gebruik ChatGPT, Google Gemini, Claude of Ollama om uw emails te verbeteren."
}
}

View file

@ -1,6 +1,6 @@
{
"extensionDescription": {
"message": "Używaj ChatGPT, Goolge Gemini, Claude lub Ollama do ulepszania swoich e-maili!",
"message": "Używaj ChatGPT, Goolge Gemini, Anthropic lub Ollama do ulepszania swoich e-maili!",
"description": "Description of the extension."
},
"menu_title": {
@ -24,6 +24,9 @@
"prompt_classify": {
"message": "Klasyfikuj"
},
"prompt_summarize_this": {
"message": "Podsumuj to"
},
"prompt_translate_this": {
"message": "Przetłumacz to"
},
@ -324,6 +327,9 @@
"chagpt_api_send_button": {
"message": "Używając modelu"
},
"chagpt_api_connecting": {
"message": "Próba połączenia z OpenAI ChatGPT przy użyciu podanego klucza API"
},
"Debug": {
"message": "Debugowanie"
},
@ -357,6 +363,12 @@
"ollama_empty_model": {
"message": "Nie wybrałeś modelu dla API Ollama. Proszę wybierz jeden na stronie opcji."
},
"ollama_api_connecting": {
"message": "Próba połączenia z lokalnym serwerem Ollama używając hosta"
},
"andModel": {
"message": "i modelu"
},
"error_connection_interrupted": {
"message": "Połączenie z serwerem zostało nieoczekiwanie przerwane"
},
@ -387,6 +399,9 @@
"OpenAIComp_empty_model": {
"message": "Nie wybrałeś modelu dla API kompatybilnego z OpenAI. Proszę wybierz jeden na stronie opcji."
},
"OpenAIComp_api_connecting": {
"message": "Próba połączenia z lokalnym serwerem API kompatybilnym z OpenAI używając hosta"
},
"OpenAIComp_api_request_failed": {
"message": "Zapytanie do API kompatybilnego z OpenAI nie powiodło się"
},
@ -408,6 +423,12 @@
"prefs_OptionText_dynamic_menu_force_enter_info": {
"message": "Jeśli zaznaczone, użycie skrótu klawiszowego CTRL+ALT+A automatycznie wyśle zaznaczone polecenie z menu. W przeciwnym razie nazwa polecenia zostanie wyświetlona użytkownikowi, wymagając kolejnego naciśnięcia klawisza Enter, aby je wysłać."
},
"prefs_OptionText_dynamic_menu_order_alphabet": {
"message": "Menu: sortuj alfabetycznie"
},
"prefs_OptionText_dynamic_menu_order_alphabet_info": {
"message": "Jeśli zaznaczone, polecenia w menu będą uporządkowane alfabetycznie."
},
"prefs_OptionText_chatgpt_win_dims_info": {
"message": "Ustaw na 0, jeśli nie chcesz określać rozmiaru okna."
},
@ -477,6 +498,9 @@
"chatgpt_btn_model": {
"message": "Użyj bieżącego modelu"
},
"SendingPrompt": {
"message": "Wysyłanie polecenia..."
},
"AllowedValues": {
"message": "Dozwolone wartości"
},
@ -492,6 +516,9 @@
"prefs_OptionText_owl_warning": {
"message": "Wygląda na to, że przynajmniej jedno z Twoich kont używa dodatku Owl for Exchange. Istnieje znany problem między Thunderbirdem a Owl, który jest obecnie rozwiązywany. Na ten moment możesz używać ThunderAI podczas pisania e-maili, ale nie podczas ich czytania."
},
"prefs_OptionText_chatgpt_web_model_tooltip": {
"message": "Kliknij na wartość, aby ją ustawić."
},
"prompt_reply_full_text": {
"message": "Odpowiedz na poniższy e-mail. Odpowiedz wyłącznie wymaganym tekstem, bez dodatkowych komentarzy ani innego tekstu."
},
@ -516,8 +543,11 @@
"prompt_classify_full_text": {
"message": "Sklasyfikuj poniższy tekst pod względem uprzejmości, serdeczności, formalności, stanowczości, obraźliwości, podając procent dla każdej kategorii. Odpowiedz wyłącznie kategorią i wynikiem, bez dodatkowych komentarzy ani innego tekstu."
},
"prompt_summarize_this_full_text": {
"message": "Podsumuj poniższy e-mail w formie listy punktowanej."
},
"prompt_translate_this_full_text": {
"message": "Przetłumacz poniższą wiadomość e-mail na język {%thunderai_translate_lang%}.\n\nZasady:\n- Przetłumacz zarówno temat, jak i treść wiadomości.\n- Zwróć wynik jako obiekt JSON z trzema polami: \"subject\", \"body\" i \"status\".\n- Jeśli tłumaczenie zostało wykonane, status wynosi 1.\n- Jeśli wiadomość e-mail jest napisana w jednym z tych języków \"{%thunderai_translate_exclude_lang%}\" lub w języku {%thunderai_translate_lang%}, zwróć pusty ciąg znaków dla treści i tematu oraz ustaw status na -1.\n- Nie dodawaj wyjaśnień, notatek ani żadnego tekstu poza formatem JSON.\n\nTemat wiadomości: {%mail_subject%}\n\nTreść wiadomości: {%mail_html_body%}\n\nWygeneruj odpowiedź wyłącznie w formacie JSON. Wynikiem powinien być tylko obiekt JSON. Oto przykład formatu JSON, którego należy użyć:\n{\n\"subject\": \"subject translation\",\n\"body\": \"body translation\",\n\"status\": \"status result\"\n}"
"message": "Przetłumacz poniższy e-mail na"
},
"prompt_this_full_text": {
"message": "Odpowiedz wyłącznie wymaganym tekstem, bez dodatkowych komentarzy ani innego tekstu."
@ -642,6 +672,9 @@
"google_gemini_api_request_failed": {
"message": "Połączenie do interfejsu API Google Gemini nie powiodło się"
},
"google_gemini_api_connecting": {
"message": "Próba połączenia z Google Gemini przy użyciu dostarczonego klucza API"
},
"google_gemini_empty_apikey": {
"message": "Nie dodałeś klucza API dla API Google Gemini. Wstaw go na stronie opcji."
},
@ -670,7 +703,7 @@
"message": "Dodaj nowe wydarzenie w kalendarzu"
},
"prompt_get_calendar_event_full_text": {
"message": "Wyodrębnij wszystkie istotne szczegóły wymagane do wygenerowania wydarzenia w kalendarzu z poniższego tekstu. Wyodrębnione informacje powinny obejmować:\n- Tytuł wydarzenia\n- Datę i godzinę rozpoczęcia (w tym strefę czasową, jeśli została określona)\n- Datę i godzinę zakończenia (w tym strefę czasową, jeśli została określona)\n- Cały dzień (jeśli jest podany)\n- Uczestnicy\nUpewnij się, że dane są sformatowane w sposób jasny i spójny, tak aby można go bezpośrednio wykorzystać do utworzenia wydarzenia w kalendarzu.\nJeśli istnieją odniesienia do czasu względnego, pamiętaj, że data i godzina wysłania wiadomości e-mail to „{%mail_datetime%}”. Oblicz datę i godzinę rozpoczęcia na podstawie tego odniesienia. Jeśli obliczona data i godzina rozpoczęcia są wcześniejsze niż „{%current_datetime%}”, oblicz ponownie datę i godzinę rozpoczęcia, stosując jako podstawę „{%current_datetime%}”.\nJeśli wydarzenie jest całodniowe, data zakończenia (endDate) musi przypadać na dzień po dacie rozpoczęcia (startDate), a godzina musi być ustawiona na \"T000000\".\nJeśli czas trwania nie jest określony, ustaw go na jedną godzinę.\nOto uczestnicy: {%author%}, {%recipients%}, {%cc_list%}. Jeśli jest obecny, wyklucz mój adres: {%account_email_address%}.\nJeśli nie możesz uzyskać co najmniej jednej z wymaganych informacji, w odpowiedzi wpisz pusty ciąg znaków.\nWygeneruj odpowiedź tylko w formacie JSON. Nie dołączaj żadnego dodatkowego tekstu ani wyjaśnień; podaj tylko JSON. Oto format, którego należy użyć:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"Tutaj podsumowanie wydarzenia w kalendarzu\",\n\"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nOto tekst:\"{%mail_text_body_or_selected%}\""
"message": "Wyodrębnij wszystkie istotne szczegóły wymagane do wygenerowania wydarzenia w kalendarzu z poniższego tekstu. Wyodrębnione informacje powinny obejmować:\n- Tytuł wydarzenia\n- Datę i godzinę rozpoczęcia (w tym strefę czasową, jeśli została określona)\n- Datę i godzinę zakończenia (w tym strefę czasową, jeśli została określona)\n- Cały dzień (jeśli jest podany)\n- Uczestnicy\nUpewnij się, że dane są sformatowane w sposób jasny i spójny, tak aby można go bezpośrednio wykorzystać do utworzenia wydarzenia w kalendarzu.\nJeśli istnieją odniesienia do czasu względnego, pamiętaj, że data i godzina wysłania wiadomości e-mail to „{%mail_datetime%}”. Oblicz datę i godzinę rozpoczęcia na podstawie tego odniesienia. Jeśli obliczona data i godzina rozpoczęcia są wcześniejsze niż „{%current_datetime%}”, oblicz ponownie datę i godzinę rozpoczęcia, stosując jako podstawę „{%current_datetime%}”.\nJeśli czas trwania nie jest określony, ustaw go na jedną godzinę.\nOto uczestnicy: {%author%}, {%recipients%}, {%cc_list%}. Jeśli jest obecny, wyklucz mój adres: {%account_email_address%}.\nJeśli nie możesz uzyskać co najmniej jednej z wymaganych informacji, w odpowiedzi wpisz pusty ciąg znaków.\nWygeneruj odpowiedź tylko w formacie JSON. Nie dołączaj żadnego dodatkowego tekstu ani wyjaśnień; podaj tylko JSON. Oto format, którego należy użyć:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"Tutaj podsumowanie wydarzenia w kalendarzu\",\n\"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nOto tekst:\"{%selected_text %}\""
},
"prefs_OptionText_get_calendar_event": {
"message": "Dodaj nowe wydarzenie w kalendarzu z zaznaczonego tekstu"
@ -738,7 +771,7 @@
"Spam_Value": {
"message": "Wartość spamu"
},
"placeholder_thunderai_def_lang": {
"thunderai_def_lang": {
"message": "Domyślny język zgodnie z opcjami ThunderAI."
},
"prompt_spamfilter": {
@ -759,12 +792,15 @@
"Moved_to_Spam": {
"message": "Przeniesiono do spamu"
},
"no_string": {
"spamfilter_not_moved": {
"message": "Nie"
},
"prefs_OptionText_add_tags_auto_force_existing_Info": {
"message": "Jeśli zaznaczone, AI doda tylko istniejące tagi do nowo odebranych e-maili i nie utworzy nowych."
},
"sparks_not_installed": {
"message": "ThunderAI Sparks nie zainstalowany!"
},
"SpamFilter_info_default": {
"message": "Na tej stronie możesz edytować domyślny prompt używany do wykrywania e-maili spamowych."
},
@ -777,7 +813,7 @@
"prefs_OptionText_btnManageSpamFilterInfo": {
"message": "Zarządzaj ustawieniami filtra spamu"
},
"yes_string": {
"spamfilter_moved": {
"message": "Tak"
},
"prefs_OptionText_spamfilter": {
@ -811,7 +847,7 @@
"message": "Zarządzaj ustawieniami filtra spamu"
},
"prompt_spamfilter_full_text": {
"message": "Przeanalizuj poniższy e-mail i określ, czy jest to spam, czy nie. Weź pod uwagę takie czynniki jak podejrzane słowa kluczowe, nadmierny język promocyjny, wprowadzające w błąd tematy, prośby o podanie danych osobowych i nietypowe adresy nadawców.\nPodaj wartość od 0 (nie spam) do 100 (spam) oraz wyjaśnienie nie dłuższe niż 10 słów.\nW przypadku braku danych wiadomości ustaw wartość na 0 (nie spam) i podaj powód.\nWygeneruj odpowiedź tylko w formacie JSON. Nie dodawaj żadnego dodatkowego tekstu ani wyjaśnień; podaj tylko JSON. Oto format, który należy użyć:\n{\n\"explanation\": \"Krótkie wyjaśnienie twojego rozumowania\",\n\"spamValue\": <liczba całkowita od 0 do 100>\n}\nOto informacje o e-mailu:\nNadawca: \"{%author%}\"\nTemat: \"{%mail_subject%}\"\nTreść HTML: \"{%mail_html_body%}\""
"message": "Przeanalizuj poniższy e-mail i określ, czy jest to spam, czy nie. Weź pod uwagę takie czynniki jak podejrzane słowa kluczowe, nadmierny język promocyjny, wprowadzające w błąd tematy, prośby o podanie danych osobowych i nietypowe adresy nadawców.\nPodaj wartość od 0 (nie spam) do 100 (spam) oraz wyjaśnienie nie dłuższe niż 10 słów.\nW przypadku braku danych wiadomości ustaw wartość na 0 (nie spam) i podaj powód.\nWygeneruj odpowiedź tylko w formacie JSON. Nie dodawaj żadnego dodatkowego tekstu ani wyjaśnień; podaj tylko JSON. Oto format, który należy użyć:\n{\n\"spamValue\": <liczba całkowita od 0 do 100>,\n\"explanation\": \"Krótkie wyjaśnienie twojego rozumowania\"\n}\nOto informacje o e-mailu:\nNadawca: \"{%author%}\"\nTemat: \"{%mail_subject%}\"\nTreść HTML: \"{%mail_html_body%}\""
},
"prefs_OptionText_spamfilter_threshold_Info": {
"message": "Jeśli wartość zwrócona przez AI przekroczy ten próg, e-mail zostanie przeniesiony do folderu spamu."
@ -822,6 +858,9 @@
"spamfilter_no_reports": {
"message": "Nie przeskanowano jeszcze żadnych wiadomości pod kątem spamu. Tutaj znajdziesz listę ostatnich 100 raportów o spamie tylko dla bieżącej sesji."
},
"context_menu_mzta-add-tags": {
"message": "Dodaj tagi"
},
"customPrompts_form_label_use_diff_viewer_title": {
"message": "Widok zmian może zostać wybrany, kiedy wybrana akcja to \"Tekst zastępczy\"."
},
@ -852,6 +891,9 @@
"prefs_OptionText_calendar_enforce_timezone": {
"message": "Wymuś konkretną strefę czasową"
},
"context_menu_mzta-spamfilter": {
"message": "Analizuj pod kątem spamu"
},
"placeholder_account_email_address": {
"message": "Adres email konta"
},
@ -863,8 +905,5 @@
},
"placeholder_mail_quoted_text": {
"message": "Zacytowany tekst w treści maila"
},
"placeholder_selected_html": {
"message": "Zaznaczony HTML"
}
}

View file

@ -1,6 +1,6 @@
{
"extensionDescription": {
"message": "Use o ChatGPT, Goolge Gemini, Claude ou o Ollama para aprimorar seus e-mails!",
"message": "Use o ChatGPT, Goolge Gemini, Anthropic ou o Ollama para aprimorar seus e-mails!",
"description": "Description of the extension."
},
"menu_title": {
@ -24,6 +24,9 @@
"prompt_classify": {
"message": "Classificar"
},
"prompt_summarize_this": {
"message": "Resuma isso"
},
"prompt_translate_this": {
"message": "Traduza isso"
},
@ -324,6 +327,9 @@
"chagpt_api_send_button": {
"message": "Usando modelo"
},
"chagpt_api_connecting": {
"message": "Tentando conectar ao OpenAI ChatGPT usando a chave de API fornecida"
},
"Debug": {
"message": "Depurar"
},
@ -357,6 +363,12 @@
"ollama_empty_model": {
"message": "Você não escolheu um modelo para a API do Ollama. Por favor, escolha um na página de opções."
},
"ollama_api_connecting": {
"message": "Tentando conectar ao servidor local do Ollama usando o host"
},
"andModel": {
"message": "e modelo"
},
"error_connection_interrupted": {
"message": "A conexão com o servidor foi interrompida inesperadamente"
},
@ -387,6 +399,9 @@
"OpenAIComp_empty_model": {
"message": "Você não escolheu um modelo para a API Compatível com OpenAI. Por favor, escolha um na página de opções."
},
"OpenAIComp_api_connecting": {
"message": "Tentando conectar ao Servidor Local da API Compatível com OpenAI usando o host"
},
"OpenAIComp_api_request_failed": {
"message": "Solicitação da API Comp do OpenAI falhou"
},
@ -408,6 +423,12 @@
"prefs_OptionText_dynamic_menu_force_enter_info": {
"message": "Se marcado, usar o atalho de teclado CTRL+ALT+A enviará automaticamente o prompt destacado do menu. Caso contrário, o nome do prompt será exibido para o usuário, exigindo outra pressão da tecla Enter para enviá-lo."
},
"prefs_OptionText_dynamic_menu_order_alphabet": {
"message": "Menu: ordenar alfabeticamente"
},
"prefs_OptionText_dynamic_menu_order_alphabet_info": {
"message": "Se marcado, os prompts no menu serão ordenados alfabeticamente."
},
"prefs_OptionText_chatgpt_win_dims_info": {
"message": "Defina como 0 se você não quiser especificar o tamanho da janela."
},
@ -477,6 +498,9 @@
"chatgpt_btn_model": {
"message": "Usar o modelo atual"
},
"SendingPrompt": {
"message": "Enviando prompt..."
},
"AllowedValues": {
"message": "Valores permitidos"
},
@ -492,6 +516,9 @@
"prefs_OptionText_owl_warning": {
"message": "Parece que pelo menos uma das suas contas está usando o complemento Coruja para Exchange. Existe um problema conhecido entre Thunderbird e Coruja, que está sendo resolvido no momento. Por enquanto, você pode usar o ThunderAI ao redigir e-mails, mas não ao lê-los."
},
"prefs_OptionText_chatgpt_web_model_tooltip": {
"message": "Clique em um valor para defini-lo."
},
"prompt_reply_full_text": {
"message": "Responda ao e-mail a seguir. Responda apenas com o texto necessário e sem comentários adicionais ou outros textos."
},
@ -516,8 +543,11 @@
"prompt_classify_full_text": {
"message": "Classifique o texto a seguir em termos de Educação, Calor, Formalidade, Assertividade e Ofensividade, atribuindo uma porcentagem para cada categoria. Responda apenas com as categorias e as pontuações, sem comentários adicionais ou outros textos."
},
"prompt_summarize_this_full_text": {
"message": "Resuma o e-mail a seguir em uma lista de tópicos."
},
"prompt_translate_this_full_text": {
"message": "Traduza o e-mail abaixo para o idioma {%thunderai_translate_lang%}.\n\nRegras:\n- Traduza tanto o assunto quanto o corpo do e-mail.\n- Retorne o resultado como um objeto JSON com três campos: \"subject\", \"body\" e \"status\".\n- Se a tradução for realizada, o status é igual a 1.\n- Se o e-mail estiver escrito em um destes idiomas \"{%thunderai_translate_exclude_lang%}\" ou no idioma {%thunderai_translate_lang%}, retorne uma string vazia para o corpo e o assunto e defina o status como -1.\n- Não adicione explicações, notas ou qualquer texto fora do JSON.\n\nAssunto do e-mail: {%mail_subject%}\n\nCorpo do e-mail: {%mail_html_body%}\n\nGere uma resposta apenas em formato JSON. A saída deve ser apenas um objeto JSON. Aqui está um exemplo do formato JSON a ser usado:\n{\n\"subject\": \"subject translation\",\n\"body\": \"body translation\",\n\"status\": \"status result\"\n}"
"message": "Traduza o e-mail a seguir para"
},
"prompt_this_full_text": {
"message": "Responda apenas com o texto necessário e sem comentários adicionais ou outros textos."
@ -651,6 +681,9 @@
"google_gemini_api_request_failed": {
"message": "A solicitação para a API Google Gemini falhou"
},
"google_gemini_api_connecting": {
"message": "Tentando conectar ao Google Gemini usando a chave API fornecida"
},
"google_gemini_empty_apikey": {
"message": "Você não adicionou uma chave API para a API Google Gemini. Por favor, insira uma na página de opções."
},
@ -679,7 +712,7 @@
"message": "Adicionar um novo evento ao calendário"
},
"prompt_get_calendar_event_full_text": {
"message": "Extraia todos os detalhes relevantes necessários para gerar um evento de calendário a partir do texto a seguir. As informações extraídas devem incluir:\n- Título do evento\n- Data e hora de início (incluindo fuso horário, se especificado)\n- Data e hora de término (incluindo fuso horário, se especificado)\n- Dia inteiro (se mencionado)\n- Participantes\nCertifique-se de que os dados estejam formatados de maneira clara e consistente para que possam ser usados diretamente para criar um evento de calendário.\nSe houver referências de tempo relativas, considere que a data e a hora do e-mail são \"{%mail_datetime%}\". Calcule a data e a hora de início com base nessa referência. Se a data e a hora de início calculadas forem anteriores a \"{%current_datetime%}\", recalcule a data e a hora de início usando \"{%current_datetime%}\" como base.\nSe a duração não for especificada, defina-a como uma hora.\nEstes são os participantes: {%author%}, {%recipients%}, {%cc_list%}. Se estiver presente, exclua meu endereço: {%account_email_address%}.\nSe o evento for de dia inteiro, o campo endDate deve ser o dia seguinte ao startDate com o horário definido como \"T000000\".\nSe você não conseguir obter uma ou mais informações necessárias, responda com uma string vazia.\nGere uma resposta apenas no formato JSON. Não inclua texto ou explicações adicionais; forneça apenas o JSON. Aqui está o formato a ser usado:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"Resumo do evento do calendário aqui\",\n\"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nAqui está o texto: \"{%mail_text_body_or_selected%}\""
"message": "Extraia todos os detalhes relevantes necessários para gerar um evento de calendário a partir do texto a seguir. As informações extraídas devem incluir:\n- Título do evento\n- Data e hora de início (incluindo fuso horário, se especificado)\n- Data e hora de término (incluindo fuso horário, se especificado)\n- Dia inteiro (se mencionado)\n- Participantes\nCertifique-se de que os dados estejam formatados de maneira clara e consistente para que possam ser usados diretamente para criar um evento de calendário.\nSe houver referências de tempo relativas, considere que a data e a hora do e-mail são \"{%mail_datetime%}\". Calcule a data e a hora de início com base nessa referência. Se a data e a hora de início calculadas forem anteriores a \"{%current_datetime%}\", recalcule a data e a hora de início usando \"{%current_datetime%}\" como base.\nSe a duração não for especificada, defina-a como uma hora.\nEstes são os participantes: {%author%}, {%recipients%}, {%cc_list%}. Se estiver presente, exclua meu endereço: {%account_email_address%}.\nSe você não conseguir obter uma ou mais informações necessárias, responda com uma string vazia.\nGere uma resposta apenas no formato JSON. Não inclua texto ou explicações adicionais; forneça apenas o JSON. Aqui está o formato a ser usado:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"Resumo do evento do calendário aqui\",\n\"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\nAqui está o texto: \"{%selected_text%}\""
},
"prefs_OptionText_get_calendar_event": {
"message": "Adicionar um novo evento ao calendário a partir do texto selecionado"
@ -762,9 +795,12 @@
"Moved_to_Spam": {
"message": "Movido para spam"
},
"no_string": {
"spamfilter_not_moved": {
"message": "Não"
},
"sparks_not_installed": {
"message": "ThunderAI Sparks não instalado!"
},
"prefs_OptionText_btnManageSpamFilterInfo": {
"message": "Gerenciar configurações do filtro de spam"
},
@ -774,7 +810,7 @@
"prefs_OptionText_spamfilter_Info": {
"message": "Se marcado, o ThunderAI moverá automaticamente e-mails de spam para a pasta de spam."
},
"yes_string": {
"spamfilter_moved": {
"message": "Sim"
},
"SpamReport_Title": {
@ -796,7 +832,7 @@
"message": "Filtro de spam automático"
},
"prompt_spamfilter_full_text": {
"message": "Analise o seguinte e-mail e determine se é spam ou não. Considere fatores como palavras-chave suspeitas, linguagem promocional excessiva, linhas de assunto enganosas, solicitações de informações pessoais e endereços de remetentes incomuns.\nForneça um valor de 0 (não é spam) a 100 (spam) e uma explicação de no máximo 10 palavras.\nEm caso de ausência de dados da mensagem, defina o valor como 0 (não é spam) e informe o motivo.\nGere uma resposta apenas no formato JSON. Não inclua nenhum texto ou explicação adicional; forneça apenas o JSON. Aqui está o formato a ser usado:\n{\n\"explanation\": \"Breve explicação do seu raciocínio\",\n\"spamValue\": <inteiro de 0 a 100>\n}\nAqui estão as informações do e-mail:\nRemetente: \"{%author%}\"\nAssunto: \"{%mail_subject%}\"\nCorpo HTML: \"{%mail_html_body%}\""
"message": "Analise o seguinte e-mail e determine se é spam ou não. Considere fatores como palavras-chave suspeitas, linguagem promocional excessiva, linhas de assunto enganosas, solicitações de informações pessoais e endereços de remetentes incomuns.\nForneça um valor de 0 (não é spam) a 100 (spam) e uma explicação de no máximo 10 palavras.\nEm caso de ausência de dados da mensagem, defina o valor como 0 (não é spam) e informe o motivo.\nGere uma resposta apenas no formato JSON. Não inclua nenhum texto ou explicação adicional; forneça apenas o JSON. Aqui está o formato a ser usado:\n{\n\"spamValue\": <inteiro de 0 a 100>,\n\"explanation\": \"Breve explicação do seu raciocínio\"\n}\nAqui estão as informações do e-mail:\nRemetente: \"{%author%}\"\nAssunto: \"{%mail_subject%}\"\nCorpo HTML: \"{%mail_html_body%}\""
},
"prefs_OptionText_spamfilter_threshold_Info": {
"message": "Se o valor retornado pela IA estiver acima deste limite, o e-mail será movido para a pasta de spam."
@ -804,7 +840,7 @@
"prefs_OptionText_add_tags_auto_only_inbox_Info": {
"message": "Se marcado, a IA adicionará tags apenas aos e-mails recebidos na pasta da caixa de entrada."
},
"placeholder_thunderai_def_lang": {
"thunderai_def_lang": {
"message": "Idioma padrão conforme definido nas opções do ThunderAI."
},
"placeholder_thunderai_def_sign": {

View file

@ -108,11 +108,14 @@
"message": "Se estiver tudo certo, depois de importar carrega no botão \"Guardar Tudo\"."
},
"extensionDescription": {
"message": "Usa o ChatGPT, Google Gemini, Claude ou Ollama para melhorar os teus emails!"
"message": "Usa o ChatGPT, Google Gemini, Anthropic ou Ollama para melhorar os teus emails!"
},
"customPrompts_form_label_Name": {
"message": "Nome"
},
"prompt_summarize_this": {
"message": "Resumir isto"
},
"customPrompts_add_to_menu_composing": {
"message": "A compor um email"
},
@ -151,23 +154,5 @@
},
"customPrompts_do_reply": {
"message": "Responder"
},
"prompt_reply_custom_command": {
"message": "Responder com o comando..."
},
"chatgpt_win_close": {
"message": "Fechar"
},
"chatgpt_win_get_answer": {
"message": "Utilize a resposta escolhida"
},
"customPrompts_close_button": {
"message": "Botão de Fechar"
},
"chatgpt_btn_retry": {
"message": "Repetir"
},
"chatgpt_win_send": {
"message": "Enviar"
}
}

View file

@ -1,230 +0,0 @@
{
"menu_title": {
"message": "IA"
},
"more_info_string": {
"message": "Informații"
},
"customPrompts_form_label_Action": {
"message": "Acțiune"
},
"customPrompts_form_label_need_signature": {
"message": "Adaugă întotdeauna semnatura"
},
"extensionDescription": {
"message": "Folosește ChatGPT, Google Gemini, Claude sau Ollama pentru îmbunătățirea e-mailurilor tale!"
},
"prompt_lang": {
"message": "Răspunde în"
},
"prompt_reply": {
"message": "Răspunde la acest e-mail"
},
"prompt_reply_advanced": {
"message": "Răspunde la această conversație"
},
"prompt_reply_custom_command": {
"message": "Răspunde cu instrucțiuni suplimentare..."
},
"prompt_rewrite_polite": {
"message": "Rescrie politicos"
},
"prompt_rewrite_formal": {
"message": "Rescrie formal"
},
"prompt_classify": {
"message": "Clasifica"
},
"prompt_translate_this": {
"message": "Tradu"
},
"prompt_selection_needed": {
"message": "Pentru a putea continua trebuie selectat un text!"
},
"customPrompts_managePrompts": {
"message": "Administrare prompturi"
},
"customPrompts_managePrompts_info_default": {
"message": "Prompturile predefinite nu pot fi modificate. Însă poți să le dezactivezi, să le copiezi și, în final, să creezi o nouă versiune a lor."
},
"customPrompts_form_label_ID": {
"message": "ID"
},
"msg_prompt_too_long": {
"message": "Textul pe care l-ai furnizat este pre lung. Este necesară reducerea lui."
},
"prefsDonation_2": {
"message": "Consideră o donație!"
},
"customPrompts_managePrompts_info_default_2": {
"message": "Poți importa și exporta prompturile. Prompturile existente cu același ID vor fi suprascrise. Prompturile cu ID-uri noi vor fi adăugate."
},
"customPrompts_managePrompts_info_default_3": {
"message": "Dacă totul este corect, dupa import apasă pe butonul 'Salvează Tot'."
},
"customPrompts_saved": {
"message": "Prompturile au fost salvate!"
},
"customPrompts_form_label_Name": {
"message": "Nume"
},
"customPrompts_form_label_Text": {
"message": "Traducere"
},
"customPrompts_form_label_need_selected": {
"message": "Este necesară selecția unui text"
},
"customPrompts_form_label_need_custom_text": {
"message": "Solicită text suplimentar"
},
"customPrompts_form_required_fields": {
"message": "Câmpuri necesare"
},
"customPrompts_btnCancel": {
"message": "Renunță"
},
"customPrompts_btnOK": {
"message": "OK"
},
"customPrompts_btnDelete": {
"message": "Șterge"
},
"customPrompts_btnDelete_confirmText": {
"message": "Ești sigur că dorești ștergerea acestui element?"
},
"customPrompts_unsaved_changes": {
"message": "Există schimbări nesalvate!"
},
"btnSaveAll_string": {
"message": "Salvează Tot"
},
"btnNew_string": {
"message": "Adaugă"
},
"customPrompts_btnAddNewCommit": {
"message": "Adaugă Promptul"
},
"customPrompts_add_to_menu": {
"message": "Adaugă la meniu"
},
"customPrompts_add_to_menu_always": {
"message": "Întotdeauna"
},
"customPrompts_close_button": {
"message": "Buton de închidere"
},
"customPrompts_substitute_text": {
"message": "Înlocuiește textul"
},
"chatgpt_win_job_completed": {
"message": "Finalizat!"
},
"chatgpt_win_job_completed_select": {
"message": "Selectează textul pe care vrei să-l folosești și apasă butonul."
},
"chatgpt_win_get_answer": {
"message": "Folosește răspunsul selectat"
},
"chatgpt_win_close": {
"message": "Închide"
},
"chatgpt_btn_retry": {
"message": "Reîncearcă"
},
"chatgpt_sendbutton_not_found_error": {
"message": "Apasă butonul de trimitere pentru a transmite promptul."
},
"chatgpt_win_custom_text": {
"message": "Introdu aici textul suplimentar pentru prompt."
},
"chatgpt_win_send": {
"message": "Trimite"
},
"prefs_status_page": {
"message": "starea serviciului"
},
"prefs_OptionText_chatgpt_win_text": {
"message": "Dimensiunile ferestrei de dialog IA"
},
"prefs_OptionText_chatgpt_win_height": {
"message": "Înălțime"
},
"prefs_OptionText_chatgpt_win_width": {
"message": "Lățime"
},
"prefs_OptionText_default_sign_name": {
"message": "Numele semnăturii implicite"
},
"prefs_OptionText_default_chatgpt_lang": {
"message": "Limba implicită pentru răspunsuri"
},
"prefs_OptionText_reply_all": {
"message": "Răspunde tuturor"
},
"prefs_OptionText_reply_sender": {
"message": "Răspunde expeditorului"
},
"prefs_OptionText_reply_type": {
"message": "Tipul răspunsului"
},
"prefs_OptionText_btnManagePrompts": {
"message": "Administrează prompturile"
},
"prompt_this": {
"message": "Întreabă"
},
"customPrompts_form_label_ID_rules": {
"message": "Trebuie să fie unic, cu litere mici și fără spații"
},
"customPrompts_form_label_enabled": {
"message": "Activat"
},
"customPrompts_form_label_use_diff_viewer": {
"message": "Activează compararea de text"
},
"customPrompts_form_label_use_diff_viewer_title": {
"message": "Comparatorul de text poate fi selectat când acțiunea este setată pe \"Înlocuire text\"."
},
"customPrompts_btnEdit": {
"message": "Editează"
},
"customPrompts_add_to_menu_reading": {
"message": "Citirea unui e-mail"
},
"customPrompts_add_to_menu_composing": {
"message": "Compunerea unui e-mail"
},
"customPrompts_do_reply": {
"message": "Răspunde"
},
"chatgpt_win_working": {
"message": "În lucru..."
},
"chatgpt_textarea_not_found_error": {
"message": "Se pare că pagina ChatGPT durează prea mult să se încarce. Dacă încărcarea se termină, faceți clic pe butonul din dreapta. Dacă problema persistă, vă rugăm să verificați starea serviciului."
},
"chatgpt_user_not_logged_in": {
"message": "Nu ești conectat la ChatGPT. Te rugăm să te conectezi cu datele tale de autentificare, să închizi fereastra ChatGPT și apoi să repeți acțiunea încercată. Vei rămâne conectat ulterior."
},
"chatgpt_win_model_warning": {
"message": "Din anumite motive, nu este posibil să verificăm dacă este încărcat modelul corect. Deocamdată, puteți apăsa butonul albastru pentru a continua."
},
"chatgpt_force_completion": {
"message": "închidere forțată"
},
"chatgpt_force_completion_title": {
"message": "Apăsați aici pentru a afișa butonul 'Utilizați ultimul răspuns' dacă ChatGPT a terminat treaba, dar butonul nu a apărut."
},
"prefs_OptionText_release_notes": {
"message": "Note de Lansare"
},
"prefs_OptionText_reply_type_Info": {
"message": "Acesta este tipul de răspuns implicit care va fi utilizat atunci când răspundeți la un e-mail. Puteți alege celălalt tip ulterior în fereastra de răspuns."
},
"prefsInfoTitle": {
"message": "Informații Importante"
},
"prefsInfoDesc_1": {
"message": "S-ar putea ca interfața web ChatGPT să se modifice într-un mod care să perturbe funcționarea addon-ului. Verificați pagina \"Starea serviciului\" accesibilă prin legătura din partea de jos a acestei pagini. De asemenea, rețineți că prima dată când utilizați ThunderAI, trebuie să vă conectați la ChatGPT."
}
}

View file

@ -227,6 +227,9 @@
"prefsInfoDesc_3": {
"message": "Для использования интеграции с Ollama вам необходимо настроить локальный сервер Ollama. После запуска сервера введите его адрес в указанное поле в приложении. Для обеспечения корректной связи между ThunderAI и сервером Ollama не забудьте установить OLLAMA_ORIGINS=moz-extension://*."
},
"prompt_summarize_this": {
"message": "Подвести итоги"
},
"customPrompts_close_button": {
"message": "Кнопка «Закрыть»"
},
@ -345,7 +348,7 @@
"message": "Тип соединения"
},
"extensionDescription": {
"message": "Используй ChatGPT, Goolge Gemini, Claude или Ollama, чтобы улучшить качество своих электронных писем!"
"message": "Используй ChatGPT, Goolge Gemini, Anthropic или Ollama, чтобы улучшить качество своих электронных писем!"
},
"prefs_OptionText_do_debug_info": {
"message": "Активировать систему отладки"
@ -419,6 +422,12 @@
"prefs_OptionText_dynamic_menu_force_enter_info": {
"message": "Если флажок установлен, то при использовании сочетания клавиш CTRL+ALT+A будет автоматически отправляться выделенная подсказка из меню. В противном случае пользователю будет показано имя подсказки, и для ее отправки потребуется еще одно нажатие клавиши Enter."
},
"prefs_OptionText_dynamic_menu_order_alphabet": {
"message": "Меню: упорядочить по алфавиту"
},
"prefs_OptionText_dynamic_menu_order_alphabet_info": {
"message": "Если флажок установлен, подсказки в меню будут расположены в алфавитном порядке."
},
"prefs_OptionText_chatgpt_win_dims_info": {
"message": "Установите значение 0, если вы не хотите указывать размер окна."
},
@ -503,6 +512,9 @@
"chatgpt_btn_model": {
"message": "Использовать текущую модель"
},
"SendingPrompt": {
"message": "Отправка запроса..."
},
"AllowedValues": {
"message": "Разрешенные значения"
},
@ -521,6 +533,9 @@
"prefs_OptionText_owl_warning": {
"message": "Похоже, что по крайней мере одна из ваших учетных записей использует дополнение Owl for Exchange. Существует известная проблема между Thunderbird и Owl, которая в настоящее время решается. На данный момент вы можете использовать ThunderAI при составлении писем, но не при их чтении."
},
"prefs_OptionText_chatgpt_web_model_tooltip": {
"message": "Нажмите на значение, чтобы установить его."
},
"prompt_reply_full_text": {
"message": "Ответьте на следующее письмо. В ответе указывайте только необходимый текст, без лишних комментариев и прочего."
},
@ -545,8 +560,11 @@
"prompt_classify_full_text": {
"message": "Классифицируйте следующий текст с точки зрения вежливости, теплоты, формальности, настойчивости, оскорбительности, указав процентное соотношение для каждой категории. В ответе укажите только категорию и оценку, без доп. комментариев или др. текста."
},
"prompt_summarize_this_full_text": {
"message": "Резюмируйте следующее письмо в виде списка основных пунктов."
},
"prompt_translate_this_full_text": {
"message": "Переведите указанное ниже электронное письмо на язык {%thunderai_translate_lang%}.\n\nПравила:\n- Переведите и тему, и текст письма.\n- Верните результат в виде JSON-объекта с тремя полями: \"subject\", \"body\" и \"status\".\n- Если перевод выполнен, статус равен 1.\n- Если письмо написано на одном из этих языков \"{%thunderai_translate_exclude_lang%}\" или на языке {%thunderai_translate_lang%}, верните пустую строку для тела и темы и установите статус -1.\n- Не добавляйте никаких объяснений, заметок или любого текста вне JSON.\n\nТема письма: {%mail_subject%}\n\nТекст письма: {%mail_html_body%}\n\nСгенерируйте ответ только в формате JSON. На выходе должен быть только JSON-объект. Вот пример формата JSON, который необходимо использовать:\n{\n\"subject\": \"subject translation\",\n\"body\": \"body translation\",\n\"status\": \"status result\"\n}"
"message": "Переведите следующее письмо на"
},
"prompt_this_full_text": {
"message": "Отвечайте только нужным текстом, без лишних комментариев и прочего."
@ -717,7 +735,7 @@
"message": "Добавьте новое событие календаря"
},
"prompt_get_calendar_event_full_text": {
"message": "Извлеките из следующего текста все необходимые сведения, необходимые для создания календарного события. Извлеченная информация должна включать:\n- Название события\n- Дата и время начала (включая часовой пояс, если он указан)\n- Дата и время окончания (включая часовой пояс, если он указан)\n- Полный день (если указано)\n- Участники\nУбедитесь, что данные отформатированы четко и последовательно, чтобы их можно было напрямую использовать для создания календарного события.\nЕсли есть относительные временные ссылки, считайте, что дата и время письма - это \"{%mail_datetime%}\". Рассчитайте дату и время начала на основе этой ссылки. Если вычисленные дата и время начала раньше, чем \"{%current_datetime%}\", пересчитайте дату и время начала, взяв за основу \"{%current_datetime%}\".\nЕсли продолжительность не указана, установите ее равной одному часу.\nК ним относятся: {%author%}, {%recipients%}, {%cc_list%}. Если присутствует, исключите мой адрес: {%account_email_address%}.\nЕсли это полнодневное событие, endDate должен быть на один день позже startDate с указанием времени \"T000000\".\nЕсли вы не можете получить одну или несколько требуемых данных, ответьте пустой строкой.\nГенерируйте ответ только в формате JSON. Не включайте никаких дополнительных текстов или пояснений; предоставляйте только JSON. Вот формат, который следует использовать:\n{\n\"startDate\": \"ГГГГММДДДХММССС\",\n\"endDate\": \"ГГГГММДДДХММССС\",\n\"summary\": \"Здесь выводится краткое описание события календаря\",\n\"forceAllDay\": false,\n\"attendees\": [участник1@example.com,участник2@example.com,участник3@example.com]\n}\nВот текст: \"{%mail_text_body_or_selected%}\""
"message": "Извлеките из следующего текста все необходимые сведения, необходимые для создания календарного события. Извлеченная информация должна включать:\n- Название события\n- Дата и время начала (включая часовой пояс, если он указан)\n- Дата и время окончания (включая часовой пояс, если он указан)\n- Полный день (если указано)\n- Участники\nУбедитесь, что данные отформатированы четко и последовательно, чтобы их можно было напрямую использовать для создания календарного события.\nЕсли есть относительные временные ссылки, считайте, что дата и время письма - это \"{%mail_datetime%}\". Рассчитайте дату и время начала на основе этой ссылки. Если вычисленные дата и время начала раньше, чем \"{%current_datetime%}\", пересчитайте дату и время начала, взяв за основу \"{%current_datetime%}\".\nЕсли продолжительность не указана, установите ее равной одному часу.\nК ним относятся: {%author%}, {%recipients%}, {%cc_list%}. Если присутствует, исключите мой адрес: {%account_email_address%}.\nЕсли вы не можете получить одну или несколько требуемых данных, ответьте пустой строкой.\nГенерируйте ответ только в формате JSON. Не включайте никаких дополнительных текстов или пояснений; предоставляйте только JSON. Вот формат, который следует использовать:\n{\n\"startDate\": \"ГГГГММДДДХММССС\",\n\"endDate\": \"ГГГГММДДДХММССС\",\n\"summary\": \"Здесь выводится краткое описание события календаря\",\n\"forceAllDay\": false,\n\"attendees\": [участник1@example.com,участник2@example.com,участник3@example.com]\n}\nВот текст: \"{%selected_text%}\""
},
"prompt_get_task": {
"message": "Добавить новую задачу"
@ -830,7 +848,7 @@
"placeholder_thunderai_def_sign": {
"message": "Подпись по умолчанию, определенная в опциях ThunderAI."
},
"placeholder_thunderai_def_lang": {
"thunderai_def_lang": {
"message": "Язык по умолчанию, определенный в опциях ThunderAI."
},
"empty": {
@ -858,7 +876,7 @@
"message": "Обнаружение спама в эл. почте"
},
"prompt_spamfilter_full_text": {
"message": "Проанализируйте следующее письмо и определите, является ли оно спамом или нет. Учитывайте такие факторы, как подозрительные ключевые слова, излишняя рекламная лексика, вводящие в заблуждение тематические строки, запросы личной информации и необычные адреса отправителей.\nУкажите значение от 0 (не спам) до 100 (спам) и объяснение, состоящее не более чем из 10 слов.\nВ случае отсутствия данных о сообщении установите значение 0 (не спам) и укажите причину.\nГенерируйте ответ только в формате JSON. Не включайте никаких доп. текстов или объяснений; предоставляйте только JSON. Вот формат, который следует использовать:\n{\n\"explanation\": \"Краткое объяснение ваших рассуждений\",\n\"spamValue\": <целое число от 0 до 100>\n}\nЗдесь находится информация о почте:\nОтправитель: \"{%author%}\"\nТема: \"{%mail_subject%}\"\nHtml-тело: \"{%mail_html_body%}\""
"message": "Проанализируйте следующее письмо и определите, является ли оно спамом или нет. Учитывайте такие факторы, как подозрительные ключевые слова, излишняя рекламная лексика, вводящие в заблуждение тематические строки, запросы личной информации и необычные адреса отправителей.\nУкажите значение от 0 (не спам) до 100 (спам) и объяснение, состоящее не более чем из 10 слов.\nВ случае отсутствия данных о сообщении установите значение 0 (не спам) и укажите причину.\nГенерируйте ответ только в формате JSON. Не включайте никаких доп. текстов или объяснений; предоставляйте только JSON. Вот формат, который следует использовать:\n{\n\"spamValue\": <целое число от 0 до 100>,\n\"explanation\": \"Краткое объяснение ваших рассуждений\"\n}\nЗдесь находится информация о почте:\nОтправитель: \"{%author%}\"\nТема: \"{%mail_subject%}\"\nHtml-тело: \"{%mail_html_body%}\""
},
"SpamFilter_prompt_prefs_title": {
"message": "Параметры спам-фильтра"
@ -902,12 +920,30 @@
"Report_Date": {
"message": "Дата отчета"
},
"yes_string": {
"spamfilter_moved": {
"message": "Да"
},
"no_string": {
"spamfilter_not_moved": {
"message": "Нет"
},
"context_menu_mzta-add-tags": {
"message": "Добавить теги"
},
"context_menu_mzta-spamfilter": {
"message": "Анализ на предмет спама"
},
"prefs_OptionText_add_tags_context_menu": {
"message": "Показать пункт меню \"Добавить теги\""
},
"prefs_OptionText_add_tags_context_menu_Info": {
"message": "Если флажок установлен, пункт контекстного меню \"Добавить теги\" будет отображаться при щелчке ПКМ на письме в списке сообщений."
},
"prefs_OptionText_spamfilter_context_menu": {
"message": "Показать пункт контекстного меню \"Анализировать на предмет спама\""
},
"prefs_OptionText_spamfilter_context_menu_Info": {
"message": "Если флажок установлен, пункт контекстного меню \"Анализировать на спам\" будет отображаться при щелчке ПКМ на письме в списке сообщений."
},
"noActiveCalendar": {
"message": "Редактируемый календарь не найден!"
},
@ -947,6 +983,12 @@
"CORS_alternative_1": {
"message": "Проблемы с настройкой CORS?"
},
"CORS_alternative_2": {
"message": "Нажмите кнопку ниже, чтобы дать разрешение <all_urls> во избежание проблем с CORS."
},
"CORS_give_allurls_perm": {
"message": "Дайте разрешение на \"все URL-адреса\""
},
"prefs_OptionText_composing_plain_text": {
"message": "Сочинение обычного текста"
},
@ -1023,10 +1065,10 @@
"message": "Если в опциях или в подсказке указан Проект, временный чат не будет использоваться."
},
"prefs_Anthropic_API_Key": {
"message": "Ключ API Claude"
"message": "Ключ API Anthropic"
},
"prefs_Connection_type_Anthropic_API": {
"message": "Антропный(Claude) API"
"message": "Антропный(Anthropic) API"
},
"Anthropic_Models": {
"message": "Антропологические модели"
@ -1044,22 +1086,22 @@
"message": "ОБЯЗАТЕЛЬНО. Не изменяйте это значение, если не знаете, что делаете. Доп. информация на сайте:"
},
"prefs_OptionText_anthropic_max_tokens": {
"message": "Claude максимум токенов"
"message": "Anthropic максимум токенов"
},
"prefs_OptionText_anthropic_max_tokens_Info": {
"message": "Максимальное кол-во токенов, генерируемых в процессе завершения. Кол-во токенов в подсказке плюс max_tokens не может превышать длину контекста модели."
},
"anthropic_empty_apikey": {
"message": "Вы не добавили ключ API для API Claude. Пожалуйста, введите его на странице параметров."
"message": "Вы не добавили ключ API для API Anthropic. Пожалуйста, введите его на странице параметров."
},
"anthropic_empty_model": {
"message": "Вы не выбрали модель для Claude API. Пожалуйста, выберите ее на странице параметров."
"message": "Вы не выбрали модель для Anthropic API. Пожалуйста, выберите ее на странице параметров."
},
"anthropic_empty_version": {
"message": "Вы не добавили строку версии для API Claude. Пожалуйста, вставьте ее на странице параметров."
"message": "Вы не добавили строку версии для API Anthropic. Пожалуйста, вставьте ее на странице параметров."
},
"anthropic_api_request_failed": {
"message": "Claude API-запрос не удался"
"message": "Anthropic API-запрос не удался"
},
"_api_connecting": {
"message": "Попытка подключения к $api_string$ с использованием следующей конфигурации...",

File diff suppressed because it is too large Load diff

View file

@ -1,20 +0,0 @@
{
"extensionDescription": {
"message": "E-postalarınızı geliştirmek için ChatGPT, Google Gemini, Claude veya Ollamayı kullanın!"
},
"menu_title": {
"message": "YZ"
},
"customPrompts_managePrompts_info_default": {
"message": "Varsayılan promptlar düzenlenemez. Bunları devre dışı bırakabilir, ardından prompt metnini kopyalayıp yeni bir prompta yapıştırarak düzenlenmiş bir sürüm oluşturabilirsiniz."
},
"customPrompts_managePrompts_info_default_2": {
"message": "Promptları içe ve dışa aktarabilirsiniz. Aynı kimliğe (ID) sahip mevcut istemlerin üzerine yazılır. Yeni kimliklere (ID) sahip promptlar eklenir."
},
"customPrompts_managePrompts_info_default_3": {
"message": "Her şey doğruysa, içe aktarma işleminden sonra Tümünü Kaydet düğmesine tıklayın."
},
"customPrompts_start_saving": {
"message": "Promptlar kaydediliyor…"
}
}

View file

@ -1,4 +1,7 @@
{
"prompt_summarize_this": {
"message": "总结一下这个"
},
"prompt_reply": {
"message": "回复此电子邮件"
},
@ -45,7 +48,7 @@
"message": "保存所有变动"
},
"extensionDescription": {
"message": "使用 ChatGPT、Google Gemini、Claude 或 Ollama 来提升你的电子邮件!"
"message": "使用 ChatGPT、Google Gemini、Anthropic 或 Ollama 来提升你的电子邮件!"
},
"menu_title": {
"message": "AI"
@ -104,6 +107,9 @@
"chatgpt_btn_model": {
"message": "使用当前模型"
},
"SendingPrompt": {
"message": "正在发送提示词..."
},
"AllowedValues": {
"message": "允许的值"
},
@ -128,10 +134,10 @@
"SpamReport_Title": {
"message": "垃圾邮件过滤报告"
},
"no_string": {
"spamfilter_not_moved": {
"message": "否"
},
"yes_string": {
"spamfilter_moved": {
"message": "是"
},
"prompt_rewrite_polite": {
@ -230,6 +236,9 @@
"prefs_OptionText_spamfilter_Info": {
"message": "如果选中ThunderAI将自动将垃圾邮件移至垃圾邮件文件夹。"
},
"sparks_not_installed": {
"message": "ThunderAI Sparks 未安装!"
},
"chatgpt_textarea_not_found_error": {
"message": "看起来 ChatGPT 页面加载时间太长。如果加载完成,请点击右边的按钮。如果问题仍然存在,请检查服务状态。"
},
@ -314,6 +323,9 @@
"prefs_Connection_type_OpenAI_Comp_API": {
"message": "OpenAI 兼容的 API"
},
"prefs_OptionText_dynamic_menu_order_alphabet_info": {
"message": "如果勾选此项,菜单中的提示将按字母顺序排列。"
},
"chatgpt_win_send": {
"message": "发送"
},
@ -329,6 +341,9 @@
"prefs_ChatGPT_API_Key": {
"message": "ChatGPT API 密钥"
},
"chagpt_api_connecting": {
"message": "尝试使用提供的 API 密钥连接到 OpenAI ChatGPT"
},
"prefs_OptionText_release_notes": {
"message": "发行说明"
},
@ -356,6 +371,9 @@
"OpenAIComp_empty_model": {
"message": "您尚未选择 OpenAI Compatible API 的模型。请在选项页面中选择一个。"
},
"OpenAIComp_api_connecting": {
"message": "尝试使用主机连接到 OpenAI 兼容 API 本地服务器"
},
"prefs_OpenAIComp_ChatName": {
"message": "对话名称"
},
@ -398,9 +416,15 @@
"importPrompts_invalidPrompts": {
"message": "您尝试导入的文件不包含任何有效提示词。"
},
"andModel": {
"message": "和模型"
},
"ChatGPT_Models_Error_fetching": {
"message": "尝试获取 ChatGPT 模型时出错"
},
"prefs_OptionText_dynamic_menu_order_alphabet": {
"message": "菜单:按字母顺序排列"
},
"prefsInfoDesc_2": {
"message": "要使用 ChatGPT API您需要一个 OpenAI ChatGPT API 密钥并且必须选择一个模型。"
},
@ -477,7 +501,7 @@
"message": "如果在 ThunderAI 窗口中遇到登录问题,请使用右侧的按钮在新标签页中打开 ChatGPT完成登录后关闭该标签页然后继续使用 ThunderAI。"
},
"prompt_translate_this_full_text": {
"message": "将以下电子邮件翻译成 {%thunderai_translate_lang%}。\n\n规则\n- 翻译主题和正文。\n- 以包含三个字段“subject”、“body”和“status”的 JSON 对象形式返回结果。\n- 如果翻译已完成,则状态等于 1。\n- 如果电子邮件是以这些语言“{%thunderai_translate_exclude_lang%}”之一或 {%thunderai_translate_lang%} 语言编写的,请为主体和主题返回空字符串,并将状态设置为 -1。\n- 请勿在 JSON 之外添加解释、注释或任何文本。\n\n邮件主题{%mail_subject%}\n\n邮件正文{%mail_html_body%}\n\n仅以 JSON 格式生成响应。输出应仅为一个 JSON 对象。以下是要使用的 JSON 格式示例:\n\n{\n\n\"subject\": \"主题翻译\",\n\"body\": \"正文翻译\",\n\"status\": \"状态结果\"\n}"
"message": "将以下电子邮件翻译成"
},
"prompt_add_tags": {
"message": "为这封电子邮件添加标签"
@ -545,6 +569,9 @@
"placeholder_cc_list": {
"message": "抄送列表"
},
"prefs_OptionText_chatgpt_web_model_tooltip": {
"message": "单击一个值进行设置。"
},
"prefs_OpenAIComp_ForceModel": {
"message": "手动填入模型"
},
@ -554,6 +581,9 @@
"OpenAIComp_force_model_ask": {
"message": "在此处填入您想要使用的模型名称。"
},
"ollama_api_connecting": {
"message": "尝试使用主机连接到 Ollama 本地服务器"
},
"ollama_api_request_failed": {
"message": "Ollama API 请求失败"
},
@ -596,7 +626,7 @@
"prefs_OptionText_placeholders_use_default_value": {
"message": "占位符:使用默认值"
},
"placeholder_thunderai_def_lang": {
"thunderai_def_lang": {
"message": "ThunderAI 选项中定义的默认语言。"
},
"prefs_OptionText_openai_comp_info_remote": {
@ -605,11 +635,14 @@
"thunderai_warning_title": {
"message": "ThunderAI 警告"
},
"google_gemini_api_connecting": {
"message": "尝试使用提供的 API 密钥连接到 Google Gemini"
},
"prefs_SurveyLinkText2": {
"message": "单击此处,只需一分钟!"
},
"prompt_add_tags_full_text": {
"message": "分析以下邮件正文,并生成一个总结其内容的 JSON 标签数组。使用主题、关键话题和相关描述符作为标签。确保标签简洁且与邮件内容相关。\n邮件正文{%mail_text_body%}\n考虑以下背景详情\n- 发件人:{%author%}\n- 收件人:{%recipients%}\n- 抄送列表:{%cc_list%}\n- 邮件主题:{%mail_subject%}\n请根据邮件的正文和背景信息生成标签,忽略不必要的信息或琐碎的细节。\n仅以 JSON 格式生成响应。输出应仅为标签的 JSON 数组,不含任何额外注释或文本。以下是要使用的 JSON 格式示例:\n{\n\"tags\": [\"tag1\", \"tag2\", \"tag3\", \"tag4\", \"tag5\"]\n}"
"message": "请分析以下电子邮件文本,并生成一个 JSON 数组的标签,总结其内容。请使用主题、关键话题和相关描述词作为标签。确保标签简洁且与邮件内容密切相关。\n邮件文本{%mail_text_body%}\n考虑以下细节以获取上下文\n- 发件人:{%author%}\n- 收件人:{%recipients%}\n- 抄送列表:{%cc_list%}\n- 邮件主题:{%mail_subject%}\n请仅根据邮件正文和上下文生成标签,忽略无关信息或琐碎细节。\n请仅以 JSON 格式生成回复。输出应仅包含标签的 JSON 数组,不包含任何额外注释或文本。以下是需使用的 JSON 格式示例:\n{\n\"tags\": [\"tag1\", \"tag2\", \"tag3\", \"tag4\", \"tag5\"]\n}"
},
"placeholder_tags_full_list": {
"message": "现有标签"
@ -617,6 +650,9 @@
"addtags_dialog_title": {
"message": "为电子邮件添加标签"
},
"prompt_summarize_this_full_text": {
"message": "将以下电子邮件总结为要点列表。"
},
"prompt_rewrite_formal_full_text": {
"message": "重写以下文字,使其更加正式。回复时只使用重写的文字,不要添加任何额外的评论或其他文字。"
},
@ -747,7 +783,7 @@
"message": "管理垃圾邮件过滤器设置"
},
"prompt_get_calendar_event_full_text": {
"message": "从以下文本中提取生成日历事件所需的所有相关细节。提取的信息应包括:\n- 事件标题\n- 开始日期和时间(如果指定时区,则包括时区)\n- 结束日期和时间(如果指定时区,则包括时区)\n- 全天事件(如果提及)\n- 参与者 \n确保数据格式清晰且一致以便可以直接用于创建日历事件。\n如果存在相对时间的引用请注意邮件的日期和时间为“{%mail_datetime%}”。基于此参考计算开始日期和时间。如果计算出的开始日期和时间早于“{%current_datetime%}”,则使用“{%current_datetime%}”作为基准重新计算开始日期和时间。\n如果未指定持续时间请将其设置为一小时。\n以下是参与者{%author%}, {%recipients%}, {%cc_list%}。如有,请排除我的地址:{%account_email_address%}。\n如果该活动为全天活动endDate 必须为 startDate 的后一天,且时间设置为 \"T000000\"。\n如果无法获取一个或多个所需信息,请以空字符串响应。\n仅以 JSON 格式生成响应。不要包含任何额外的文本或说明,仅提供 JSON。以下是使用的格式\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"日历事件摘要\",\n\"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\n以下是文本“{%mail_text_body_or_selected%}”"
"message": "从以下文本中提取生成日历事件所需的所有相关细节。提取的信息应包括:\n- 事件标题\n- 开始日期和时间(如果指定时区,则包括时区)\n- 结束日期和时间(如果指定时区,则包括时区)\n- 全天事件(如果提及)\n- 参与者 \n确保数据格式清晰且一致以便可以直接用于创建日历事件。\n如果存在相对时间的引用请注意邮件的日期和时间为“{%mail_datetime%}”。基于此参考计算开始日期和时间。如果计算出的开始日期和时间早于“{%current_datetime%}”,则使用“{%current_datetime%}”作为基准重新计算开始日期和时间。\n如果未指定持续时间请将其设置为一小时。\n以下是参与者{%author%}, {%recipients%}, {%cc_list%}。如有,请排除我的地址:{%account_email_address%}。\n如果无法获取一个或多个所需信息,请以空字符串响应。\n仅以 JSON 格式生成响应。不要包含任何额外的文本或说明,仅提供 JSON。以下是使用的格式\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"日历事件摘要\",\n\"forceAllDay\": false\n\"attendees\": [attendee1@example.com,attendee2@example.com,attendee3@example.com]\n}\n以下是文本“{%selected_text%}”"
},
"prefs_OptionText_get_calendar_event": {
"message": "从所选文本添加新日历事件"
@ -792,7 +828,7 @@
"message": "获取日历事件数据时出错"
},
"prompt_spamfilter_full_text": {
"message": "分析以下邮件并判断它是否为垃圾邮件。考虑因素包括可疑关键词、过多的宣传语言、误导性的主题行、索取个人信息的请求以及异常的发件人地址。\n提供一个从 0非垃圾邮件到 100垃圾邮件的值并附上不超过 10 个单词的解释。\n如果消息数据缺失将数值设为0非垃圾邮件并说明原因。\n仅以 JSON 格式生成响应。不要包含任何额外文本或解释;仅提供 JSON。以下是使用的格式\n{\n\"explanation\": \"简要说明您的判断理由\",\n\"spamValue\": <0 到 100 的整数>\n}\n以下是邮件信息\n发件人“{%author%}”\n主题“{%mail_subject%}”\nHTML 正文:“{%mail_html_body%}”"
"message": "分析以下邮件并判断它是否为垃圾邮件。考虑因素包括可疑关键词、过多的宣传语言、误导性的主题行、索取个人信息的请求以及异常的发件人地址。\n提供一个从 0非垃圾邮件到 100垃圾邮件的值并附上不超过 10 个单词的解释。\n如果消息数据缺失将数值设为0非垃圾邮件并说明原因。\n仅以 JSON 格式生成响应。不要包含任何额外文本或解释;仅提供 JSON。以下是使用的格式\n{\n\"spamValue\": <0 到 100 的整数>,\n\"explanation\": \"简要说明您的判断理由\"\n}\n以下是邮件信息\n发件人“{%author%}”\n主题“{%mail_subject%}”\nHTML 正文:“{%mail_html_body%}”"
},
"prefs_OptionText_spamfilter_threshold_Info": {
"message": "如果 AI 返回的值高于此阈值,电子邮件将被移至垃圾邮件文件夹。"
@ -815,11 +851,29 @@
"Report_Date": {
"message": "报告日期"
},
"context_menu_mzta-add-tags": {
"message": "添加标签"
},
"prefs_OptionText_add_tags_context_menu": {
"message": "显示“添加标签”上下文菜单项"
},
"prefs_OptionText_spamfilter_context_menu": {
"message": "显示“分析垃圾邮件”上下文菜单项"
},
"prefs_OptionText_spamfilter_context_menu_Info": {
"message": "如果选中,则在邮件列表中右键单击电子邮件时,将显示“分析垃圾邮件”上下文菜单项。"
},
"context_menu_mzta-spamfilter": {
"message": "分析垃圾邮件"
},
"prefs_OptionText_add_tags_context_menu_Info": {
"message": "如果选中,“添加标签”上下文菜单项将在消息列表中右键单击电子邮件时显示。"
},
"noActiveCalendar": {
"message": "未找到可编辑的日历!"
},
"customPrompts_form_label_use_diff_viewer": {
"message": "启用文本差异查看器"
"message": "启用差异查看器"
},
"get_calendar_event_prompt_prefs_title": {
"message": "日历事件选项"
@ -864,248 +918,6 @@
"message": "说明"
},
"customPrompts_form_label_use_diff_viewer_title": {
"message": "当操作设置为“替换文本”时,可以选择文本差异查看器。"
},
"prompt_reply_custom_command": {
"message": "使用附加的提示词指令..."
},
"prompt_string": {
"message": "提示词"
},
"prefs_OptionText_reply_type_Info": {
"message": "此即回复电子邮件时默认采用的回复类型。您可在后续的回信对话框中另行选择其他选项。"
},
"prefs_OptionText_btnManageCustomDataPH": {
"message": "管理您的数据占位符"
},
"OpenChatGPTTab_Info2": {
"message": "从此处打开 ChatGPT Web 版将应用已配置好的模型、项目及自定义 GPT 相关设置。"
},
"placeholder_mail_headers": {
"message": "邮件头"
},
"placeholder_selected_html": {
"message": "已选中的 HTML"
},
"webchat_save_as_summary": {
"message": "另存为摘要"
},
"prefs_storage_title": {
"message": "存储"
},
"prefs_storage_info": {
"message": "该存储用于保存每条消息的垃圾邮件分数、摘要和翻译。"
},
"prefs_storage_size": {
"message": "存储容量"
},
"prefs_storage_clear_button": {
"message": "清除存储"
},
"prefs_storage_clear_confirm": {
"message": "您确定要清除所有已存储的数据(包含:摘要、垃圾邮件报告、翻译等)吗?此操作无法撤销。"
},
"prefs_storage_clear_done": {
"message": "清除存储后显示的消息",
"placeholders": {
"count": {
"content": "$1"
}
}
},
"prefsInfoDesc_7": {
"message": "要使用 Google Gemini API您需要一个 Google Gemini API 密钥,并且必须选择一个模型。"
},
"prefsInfoDesc_8": {
"message": "要使用 Claude API您需要一个 Anthropic Claude API 密钥,并且必须选择一个模型。"
},
"placeholder_mail_text_body_or_selected": {
"message": "邮件正文或选定文本"
},
"placeholder_mail_html_body_or_selected": {
"message": "邮件正文或选定的 HTML"
},
"prefs_OptionText_chatgpt_web_load_wait_time": {
"message": "页面加载等待时间"
},
"prefs_OptionText_chatgpt_web_load_wait_time_info": {
"message": "在加载附加内容之前等待 ChatGPT 页面加载的时间(以毫秒为单位)。默认值为 1000 毫秒。如果定义了自定义 GPT 或项目,则该值将额外增加 1000 毫秒。"
},
"sign_msg_as": {
"message": "使用以下身份签名"
},
"prompt_reply_custom_command_full_text": {
"message": "请回复以下邮件 \"{%mail_text_body%}\"。{%additional_text%}。仅回复所需文本,不要包含额外的评论或其他文字。"
},
"prompt_proofread_this": {
"message": "校对这封邮件"
},
"prompt_proofread_this_full_text": {
"message": "请校对以下电子邮件,并纠正任何拼写或语法错误。仅回复更正后的文本,不要包含任何额外评论或其他文字。\n\n“{%mail_typed_text%}”"
},
"reset": {
"message": "重置"
},
"prefs_doc_title": {
"message": "文档"
},
"prefs_doc_setup_guide": {
"message": "设置指南"
},
"prefs_doc_custom_prompt_tutorial": {
"message": "自定义提示词教程"
},
"prefs_doc_open_welcome": {
"message": "打开欢迎页面"
},
"prompt_add_tags_force_lang": {
"message": "标签必须用以下方式编写:"
},
"placeholder_mail_quoted_text": {
"message": "邮件正文中的引用文本"
},
"prompt_get_calendar_event_from_clipboard": {
"message": "从剪贴板添加日历事件"
},
"clipboard_read_error": {
"message": "无法读取剪贴板。请检查权限。"
},
"clipboard_empty_error": {
"message": "剪贴板为空。请先复制一些文本。"
},
"clipboard_permission_denied": {
"message": "剪贴板权限被拒绝。请在设置中重新启用该功能以授予权限。"
},
"clipboard_permission_error": {
"message": "请求剪贴板权限时出错,请重试。"
},
"prefs_OptionText_get_calendar_event_from_clipboard": {
"message": "从剪贴板获取日历事件"
},
"prefs_OptionText_get_calendar_event_from_clipboard_Info": {
"message": "显示一个额外的菜单项,用于根据剪贴板文本内容创建日历事件。"
},
"Summarize_prompt_prefs_title": {
"message": "摘要选项"
},
"prompt_summarize": {
"message": "总结这封或这些邮件"
},
"prompt_summarize_full_text": {
"message": "请提供以下电子邮件的简明摘要。摘要应不超过 3-5 句话,并概括要点。请使用纯段落格式,不要使用项目符号、列表或 Markdown 格式。\n\n"
},
"prompt_summarize_email_template": {
"message": "邮件模板摘要"
},
"prompt_summarize_email_template_full_text": {
"message": "发件人:{%author%} \n收件人{%recipients%} \n抄送{%cc_list%} \n主题{%mail_subject%} \n日期{%mail_datetime%} \n附件 {%mail_attachments_info%} \n\n正文\n{%mail_text_body%}"
},
"prompt_summarize_email_separator": {
"message": "电子邮件分隔符"
},
"prompt_summarize_email_separator_full_text": {
"message": "\n\n----------下一封邮件----------\n\n"
},
"prompt_get_task": {
"message": "添加新任务"
},
"prompt_get_task_full_text": {
"message": "从以下文本中提取生成任务所需的所有相关详细信息。提取的信息应包括:\n- 截止日期和时间(如果指定,包括时区)\n- 任务摘要\n- 开始日期和时间(如果指定,包括时区)\n- 确保数据格式清晰且一致,以便直接用于创建任务。\n如果存在相对时间引用请认为电子邮件的日期和时间为“{%mail_datetime%}”。根据此参考计算开始日期和时间。如果计算出的开始日期和时间早于“{%current_datetime%}”,请使用“{%current_datetime%}”作为基准重新计算开始日期和时间。\n如果您无法获取一项或多项所需信息请回复空字符串。\n仅以 JSON 格式生成响应。不要包含任何额外的文本或说明;仅提供 JSON。以下是要使用的格式\n{\n\"InitialDate\": \"YYYYMMDDTHHMMSS\",\n\"dueDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"在此处填写任务摘要\"\n}\n如果没有关于日期的信息请将其删除。\n以下是文本“{%selected_text%}”"
},
"prefs_OptionText_get_task": {
"message": "从选定文本添加新任务"
},
"prefs_OptionText_get_task_Info": {
"message": "如果选中,则会在菜单中添加一个项目,以便从选定的文本获取任务信息。"
},
"get_task_prompt_prefs_title": {
"message": "任务选项"
},
"prefs_OptionText_Summarize_infoline2": {
"message": "您可以根据需要更改提示词,第一个字段是主提示词,第二个字段是单封邮件的模板。邮件列表将附加到主提示词中。邮件将由第三个字段中指定的间隔符分隔。"
},
"prefs_OptionText_Summarize_main_prompt": {
"message": "针对所有选定电子邮件,描述要执行的任务的主要提示:"
},
"prefs_OptionText_Summarize_email_template": {
"message": "单封邮件的模板:"
},
"prefs_OptionText_Summarize_email_separator": {
"message": "电子邮件地址之间的分隔符:"
},
"prefs_OptionText_get_calendar_event_Sparks_wrong_version": {
"message": "要使用日历事件和任务功能,请安装最新版本的 ThunderAI Sparks 插件。"
},
"GetTask_PageTitle": {
"message": "管理任务设置"
},
"GetTask_info_default": {
"message": "在此页面中,您可以修改用于从选定文本获取任务的默认提示。"
},
"prefs_OptionText_btnManageTaskInfo": {
"message": "管理任务设置"
},
"task_getting_data_error": {
"message": "获取任务数据时出错"
},
"task_opening_dialog_error": {
"message": "打开任务对话框时出错"
},
"no_valid_data_received": {
"message": "未收到来自 AI 的有效数据。"
},
"prefs_OptionText_add_tags_auto_Info2": {
"message": "请在页面底部选择要为其激活此功能的帐户。"
},
"prefs_OptionText_add_tags_auto_uselist": {
"message": "仅使用这些标签"
},
"prefs_OptionText_add_tags_auto_uselist_Info": {
"message": "如果选中此项AI 将仅添加以下列表中的标签。"
},
"prefs_OptionText_add_tags_auto_uselist_list_Info": {
"message": "列表中必须至少包含一个标签。每行添加一个标签,标签之间用逗号分隔。"
},
"prompt_add_tags_use_list": {
"message": "仅使用此逗号分隔列表中的标签"
},
"prefs_OptionText_add_tags_use_specific_integration_Info": {
"message": "如果选中此项,则无论在 ThunderAI 选项页面中选择哪个模型和 API都将使用下面指定的模型和 API 向电子邮件添加标签。"
},
"SpamFilter_skip_addresses_infoline2": {
"message": "每行添加一个电子邮件地址,或用逗号分隔。"
},
"spamfilter_skip_addresses_explanation": {
"message": "发件人已在反垃圾邮件跳过列表中。"
},
"Valid": {
"message": "有效的"
},
"hyprland_warning": {
"message": "如果您在打开 AI 聊天窗口时遇到问题,请尝试将高度和宽度值设置为 0。此问题可能在某些 Linux 环境下出现,例如在使用 Hyprland 时。"
},
"remember_CORS": {
"message": "记住,您需要在服务器上设置 CORS 设置!"
},
"maybe_CORS_openai_comp": {
"message": "使用 OpenAI 兼容 API 可能需要在服务器上设置 CORS 设置。"
},
"CORS_alternative_1": {
"message": "CORS设置有问题吗"
},
"CORS_alternative_2_new": {
"message": "点击下方按钮授予当前主机权限,以避免任何 CORS 问题。"
},
"CORS_give_host_perm": {
"message": "授予当前主机权限"
},
"CORS_localhost_warn": {
"message": "如果您使用 localhost 或 127.0.0.1,因为 AI 服务器托管在您的 PC 上,则需要 <all_urls> 权限。"
},
"prefs_OptionText_composing_plain_text": {
"message": "以纯文本编写"
},
"prefs_OptionText_composing_plain_text_Info": {
"message": "如果您以纯文本格式编写电子邮件,请选中此选项。"
"message": "当操作设置为“替换文本”时,可以选择差异查看器。"
}
}

View file

@ -32,6 +32,9 @@
"prompt_classify": {
"message": "分類"
},
"prompt_summarize_this": {
"message": "摘要這段"
},
"prompt_this": {
"message": "提示這段"
},
@ -281,7 +284,7 @@
"Spam_Value": {
"message": "垃圾訊息評分"
},
"no_string": {
"spamfilter_not_moved": {
"message": "否"
},
"Report_Date": {
@ -297,7 +300,7 @@
"message": "額外屬性"
},
"Anthropic_Models": {
"message": "Claude 模型"
"message": "Anthropic 模型"
},
"_api_connecting_model": {
"message": "模型",
@ -314,7 +317,7 @@
"message": "啟用思考"
},
"extensionDescription": {
"message": "使用 ChatGPT、Google Gemini、Claude 或 Ollama 來幫你寫好你的郵件吧!"
"message": "使用 ChatGPT、Google Gemini、Anthropic 或 Ollama 來幫你寫好你的郵件吧!"
},
"customPrompts_form_label_Name": {
"message": "名稱"
@ -384,14 +387,14 @@
"Date": {
"message": "日期"
},
"yes_string": {
"spamfilter_moved": {
"message": "是"
},
"Custom": {
"message": "自訂"
},
"prefs_Connection_type_Anthropic_API": {
"message": "Claude API"
"message": "Anthropic API"
},
"save": {
"message": "儲存"
@ -411,6 +414,9 @@
"customPrompts_ExportAll": {
"message": "匯出所有提示"
},
"prefs_OptionText_dynamic_menu_order_alphabet": {
"message": "選單:按字母排序"
},
"prefs_API_Host": {
"message": "主機位址"
},
@ -423,6 +429,12 @@
"prefs_API_Host_Info": {
"message": "類似於"
},
"SendingPrompt": {
"message": "送出提示中..."
},
"context_menu_mzta-add-tags": {
"message": "新增標籤"
},
"placeholder_mail_subject": {
"message": "郵件主旨"
},
@ -521,6 +533,9 @@
"chatgpt_api_request_failed": {
"message": "OpenAI ChatGPT API 請求失敗"
},
"WaitingServerReponse": {
"message": "等待伺服器回應"
},
"error_connection_interrupted": {
"message": "與伺服器的連線意外中斷"
},
@ -617,6 +632,12 @@
"SpamReport_Title": {
"message": "垃圾郵件過濾報告"
},
"context_menu_mzta-spamfilter": {
"message": "檢測垃圾郵件"
},
"prefs_OptionText_spamfilter_context_menu_Info": {
"message": "如果勾選,則在訊息清單中點右鍵時,會出現「分析垃圾郵件」快顯功能選單項目。"
},
"apiwebchat_use_this_answer": {
"message": "使用這個答案"
},
@ -624,13 +645,13 @@
"message": "這是將針對 ChatGPT 網頁介面強制執行的專案。"
},
"Anthropic_Models_Fetch": {
"message": "更新 Claude 模型列表"
"message": "更新 Anthropic 模型列表"
},
"prefs_Anthropic_API_Key": {
"message": "Claude API 金鑰"
"message": "Anthropic API 金鑰"
},
"anthropic_api_request_failed": {
"message": "Claude API 請求失敗"
"message": "Anthropic API 請求失敗"
},
"OpenAIComp_Configs_ConfirmApply": {
"message": "您確定要套用設定「$config_name$」嗎?",
@ -656,7 +677,7 @@
"message": "回覆以下郵件。僅回覆所需內容,不要提供任何註解或其他文字。"
},
"prompt_translate_this_full_text": {
"message": "將以下電子郵件翻譯成 **{%thunderai_translate_lang%}**。\n\n**規則:**\n- 同時翻譯主題Subject與正文Body。\n- 以 JSON 物件格式回傳結果,包含三個欄位:\"subject\"、\"body\" 以及 \"status\"。\n- 如果完成翻譯status 等於 1。\n- 如果郵件是以 \"{%thunderai_translate_exclude_lang%}\" 其中之一的語言或 {%thunderai_translate_lang%} 語言編寫,請將 body 和 subject 設為空字串,並將 status 設為 -1。\n- 請勿在 JSON 之外添加任何說明、備註或文字。\n\n郵件主題{%mail_subject%}\n\n郵件正文{%mail_html_body%}\n\n請僅以 JSON 格式生成回應。輸出應僅包含一個 JSON 物件。以下是要使用的 JSON 格式範例:\n{\n\"subject\": \"subject translation\",\n\"body\": \"body translation\",\n\"status\": \"status result\"\n}"
"message": "將以下電子郵件翻譯成"
},
"prompt_rewrite_full_text": {
"message": "請重寫以下文字,使其更有禮貌。僅回覆重寫的文字,不要提供任何額外的註解或其他文字。"
@ -781,6 +802,9 @@
"prefs_OptionText_spamfilter_threshold_Info": {
"message": "如果 AI 傳回的值高於此閾值,則電子郵件將被移至垃圾郵件資料夾。"
},
"prefs_OptionText_add_tags_context_menu": {
"message": "顯示「新增標籤」在快顯功能選單"
},
"remember_CORS": {
"message": "記住,您需要在伺服器上設定 CORS 設定!"
},
@ -791,7 +815,7 @@
"message": "點擊此處開啟新分頁並按照說明進行操作。"
},
"ask_anthropic_api_permission_1": {
"message": "要使用 Claude API 整合,您需要授予所需的權限。"
"message": "要使用 Anthropic API 整合,您需要授予所需的權限。"
},
"ask_integration_permission_ok": {
"message": "已授予權限。您可以按一下此處關閉此分頁並返回主視窗。"
@ -821,7 +845,7 @@
"message": "如果在選項或提示中指定了專案,則不會使用臨時聊天。"
},
"Anthropic_Models_Error_fetching": {
"message": "嘗試取得 Claude 模型時出錯"
"message": "嘗試取得 Anthropic 模型時出錯"
},
"_api_connecting": {
"message": "嘗試使用以下配置連接到 $api_string$...",
@ -832,10 +856,10 @@
}
},
"anthropic_empty_model": {
"message": "您尚未選擇 Claude API 的模型。請在選項頁面中選擇一個。"
"message": "您尚未選擇 Anthropic API 的模型。請在選項頁面中選擇一個。"
},
"anthropic_empty_version": {
"message": "您尚未新增 Claude API 的版本字串。請在選項頁面中輸入一個。"
"message": "您尚未新增 Anthropic API 的版本字串。請在選項頁面中輸入一個。"
},
"ChatGPT_chatgpt_api_store_info": {
"message": "如果勾選,您的聊天記錄將由 OpenAI 儲存。"
@ -892,7 +916,7 @@
"message": "自動新增標籤"
},
"anthropic_empty_apikey": {
"message": "您尚未新增 Claude API 的 API 金鑰。請在選項頁面中輸入一個。"
"message": "您尚未新增 Anthropic API 的 API 金鑰。請在選項頁面中輸入一個。"
},
"prefs_OpenAIComp_ForceModel": {
"message": "手動輸入模型"
@ -904,7 +928,7 @@
"message": "管理任務設定"
},
"Anthropic_Version": {
"message": "Claude API 版本"
"message": "Anthropic API 版本"
},
"prefs_OptionText_spamfilter": {
"message": "自動垃圾郵件過濾器"
@ -913,7 +937,7 @@
"message": "已移到垃圾郵件"
},
"prefs_OptionText_anthropic_max_tokens": {
"message": "Claude 最大 Token 數"
"message": "Anthropic 最大 Token 數"
},
"prefs_OpenAIComp_API_Key": {
"message": "OpenAI 相容 API 金鑰"
@ -969,6 +993,9 @@
"prompt_reply_additional_text": {
"message": "不要在回覆中加入主旨。"
},
"prompt_summarize_this_full_text": {
"message": "將以下電子郵件總結為要點清單。"
},
"prefs_OptionText_placeholders_use_default_value": {
"message": "佔位符:使用預設值"
},
@ -978,13 +1005,16 @@
"prefs_OptionText_btnManageSpamFilterInfo": {
"message": "管理垃圾郵件設定"
},
"CORS_give_allurls_perm": {
"message": "授予「所有網址」權限"
},
"prefs_ollama_num_ctx": {
"message": "情境 Token 數量"
},
"prefs_OptionText_chatgpt_web_custom_gpt": {
"message": "ChatGPT 網頁自訂 GPT"
},
"placeholder_thunderai_def_lang": {
"thunderai_def_lang": {
"message": "ThunderAI 選項中定義的預設語言。"
},
"prefs_SurveyLinkText2": {
@ -996,6 +1026,12 @@
"spamfilter_threshold_zero": {
"message": "垃圾郵件閾值為零!您將把所有郵件標記為垃圾郵件!"
},
"prefs_OptionText_chatgpt_web_model_tooltip": {
"message": "點擊一個值來設定它。"
},
"prefs_OptionText_dynamic_menu_order_alphabet_info": {
"message": "如果勾選,選單中的提示將按字母順序排列。"
},
"prefs_OptionText_spamfilter_Info": {
"message": "如果勾選ThunderAI 將自動將垃圾郵件移至垃圾郵件資料夾。"
},
@ -1051,7 +1087,7 @@
"message": "您尚未選擇 ChatGPT API 的模型。請在選項頁面中選擇一個。"
},
"prompt_get_calendar_event_full_text": {
"message": "從以下文字中提取所有需要生成日曆事件的相關資訊。 提取的資訊應包含:\n- 事件名稱\n- 起始日期和時間(包含時區,如果指定)\n- 結束日期和時間(包含時間區,如果指定)\n- 整天事件(如果提及\n- 參與者\n確保數據以清晰一致的方式格式化以便直接用於創建日曆事件。\n如果有相對時間參考請考慮電子郵件的日期和時間是 「{%mail_datetime%}」。 計算基於此參考的起日期和時間。 如果計算出的起日期和時間早於「{%current_datetime%}」,則使用「{%current_datetime%}」作為基準重新計算起日期和時間。\n如果持續時間沒有指定則設定為一小時。\n參與者{%author%}, {%recipients%}, {%cc_list%}。如果存在,請排除我的地址:{%account_email_address%}。\n如果該活動為全天活動endDate 必須為 startDate 的後一天,且時間設置為 \"T000000\"。\n如果無法獲得其中一個或多個所需的資訊,請回覆一個空字串。\n請以 JSON 格式回覆,不要包含任何額外的文字或說明,提供僅 JSON。 以下是將要使用的格式:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"日曆事件摘要在此\",\n\"forceAllDay\": false,\n\"attendees\": [\"attendee1@example.com \",\"attendee2@example.com \",\"attendee3@example.com \"]\n}\n這裡是文字「{%mail_text_body_or_selected%}」"
"message": "從以下文字中提取所有需要生成日曆事件的相關資訊。 提取的資訊應包含:\n- 事件名稱\n- 起始日期和時間(包含時區,如果指定)\n- 結束日期和時間(包含時間區,如果指定)\n- 整天事件(如果提及\n- 參與者\n確保數據以清晰一致的方式格式化以便直接用於創建日曆事件。\n如果有相對時間參考請考慮電子郵件的日期和時間是 「{%mail_datetime%}」。 計算基於此參考的起日期和時間。 如果計算出的起日期和時間早於「{%current_datetime%}」,則使用「{%current_datetime%}」作為基準重新計算起日期和時間。\n如果持續時間沒有指定則設定為一小時。\n參與者{%author%}, {%recipients%}, {%cc_list%}。如果存在,請排除我的地址:{%account_email_address%}。\n如果無法獲得其中一個或多個所需的資訊,請回覆一個空字串。\n請以 JSON 格式回覆,不要包含任何額外的文字或說明,提供僅 JSON。 以下是將要使用的格式:\n{\n\"startDate\": \"YYYYMMDDTHHMMSS\",\n\"endDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"日曆事件摘要在此\",\n\"forceAllDay\": false,\n\"attendees\": [\"attendee1@example.com \",\"attendee2@example.com \",\"attendee3@example.com \"]\n}\n這裡是文字「{%selected_text%}」"
},
"TranslateText": {
"message": "您願意幫忙翻譯這個附加元件嗎?"
@ -1059,6 +1095,9 @@
"prompt_get_task_full_text": {
"message": "從以下文字中提取所有需要生成任務的相關資訊。 提取的資訊應包含:\n- 截止日期和時間(包括時區,如果指定)\n- 任務總結\n- 初始日期和時間(包括時區,如果指定)\n確保數據以清晰一致的方式格式化以便直接用於建立任務。\n如果有相對時間參考請考慮電子郵件的日期和時間是 「{%mail_datetime%}」。 計算基於此參考的起日期和時間。如果計算出的起日期和時間早於「{%current_datetime%}」,則使用 「{%current_datetime%}」作為基準重新計算起日期和時間。\n如果無法獲得其中一個或多個所需的資訊請回覆一個空字串。\n請以 JSON 格式回覆,不包含任何額外的文字或說明,提供僅 JSON。 以下是將要使用的格式:\n{\n\"InitialDate\": \"YYYYMMDDTHHMMSS\",\n\"dueDate\": \"YYYYMMDDTHHMMSS\",\n\"summary\": \"任務總結在此\"\n}\n如果沒有日期資訊請刪除這些資訊。\n以下是文字「{%selected_text%}」"
},
"prefs_OptionText_spamfilter_context_menu": {
"message": "顯示「分析垃圾郵件」在快顯功能選單"
},
"sign_msg_as": {
"message": "簽署訊息為"
},
@ -1072,7 +1111,7 @@
"message": "ChatGPT 網頁介面可能會發生一些變化,導致附加元件無法正常運作。請查看此頁面底部連結的「服務狀態」頁面。另外,請記住,首次使用 ThunderAI 時,您需要登入 ChatGPT。"
},
"prompt_spamfilter_full_text": {
"message": "分析以下 Email 並判斷是否為垃圾郵件。 考慮因素包括可疑關鍵字、過度推銷性語言、誤導性主旨、要求個人資訊以及異常的寄件人地址。\n提供一個 0 (非垃圾郵件) 到 100 (垃圾郵件) 的分數,並提供一段不超過 10 字的說明。\n如果缺少訊息資料則設定分數為 0 (非垃圾郵件),並說明原因。\n請以 JSON 格式回覆,不包含任何額外的文字或說明,提供僅 JSON。以下是將要使用的格式\n{\n\"explanation\": \"簡短說明您的理由\",\n\"spamValue\": <由 0 到 100 的整數>\n}\n以下是郵件資訊\n寄件人「{%author%}」\n主旨「{%mail_subject%}」\nHTML 內容:「{%mail_html_body%}」"
"message": "分析以下 Email 並判斷是否為垃圾郵件。 考慮因素包括可疑關鍵字、過度推銷性語言、誤導性主旨、要求個人資訊以及異常的寄件人地址。\n提供一個 0 (非垃圾郵件) 到 100 (垃圾郵件) 的分數,並提供一段不超過 10 字的說明。\n如果缺少訊息資料則設定分數為 0 (非垃圾郵件),並說明原因。\n請以 JSON 格式回覆,不包含任何額外的文字或說明,提供僅 JSON。以下是將要使用的格式\n{\n\"spamValue\": <由 0 到 100 的整數>,\n\"explanation\": \"簡短說明您的理由\"\n}\n以下是郵件資訊\n寄件人「{%author%}」\n主旨「{%mail_subject%}」\nHTML 內容:「{%mail_html_body%}」"
},
"task_getting_data_error": {
"message": "取得取得任務資料時出錯"
@ -1098,9 +1137,15 @@
"prompt_rewrite_formal_full_text": {
"message": "請將以下文字重寫得更正式一些。僅回覆重寫的文字,不要提供任何額外的註解或其他文字。"
},
"CORS_alternative_2": {
"message": "點擊下方按鈕,授予「所有網址」權限,以避免任何 CORS 問題。"
},
"GoogleGemini_SystemInstruction_Info": {
"message": "當您設定系統指示時,您會為模型提供額外情境來理解任務,提供更客製化的回應,並遵守將要發送的提示的特定指南。"
},
"prefs_OptionText_add_tags_context_menu_Info": {
"message": "如果勾選,則右鍵單擊訊息清單中的電子郵件時將顯示「新增標籤」在快顯功能選單。"
},
"prefs_OptionText_chatgpt_web_custom_gpt_info": {
"message": "這是將針對 ChatGPT 網頁介面強制執行的自訂 GPT。"
},

View file

@ -1,6 +1,6 @@
/*
* ThunderAI [https://micz.it/thunderbird-addon-thunderai/]
* Copyright (C) 2024 - 2026 Mic (m@micz.it)
* Copyright (C) 2024 - 2025 Mic (m@micz.it)
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -20,10 +20,9 @@
* The original code has been released under the Apache License, Version 2.0.
*/
import { prefs_default, integration_options_config } from '../options/mzta-options-default.js';
import { prefs_default } from '../options/mzta-options-default.js';
import { placeholdersUtils } from '../js/mzta-placeholders.js';
import { getAPIsInitMessageString, convertNewlinesToBr } from '../js/mzta-utils.js';
import { loadPrompt } from '../js/mzta-prompts.js';
// Get the LLM to be used
const urlParams = new URLSearchParams(window.location.search);
@ -47,185 +46,221 @@ const messagesArea = document.querySelector('messages-area');
// The controller wires up all the components and workers together,
// managing the dependencies. A kind of "DI" class.
let worker = null;
const integration = llm.replace('_api', '');
const worker_path_map = {
chatgpt: '../js/workers/model-worker-openai_responses.js',
google_gemini: '../js/workers/model-worker-google_gemini.js',
ollama: '../js/workers/model-worker-ollama.js',
openai_comp: '../js/workers/model-worker-openai_comp.js',
anthropic: '../js/workers/model-worker-anthropic.js',
};
const worker_path = worker_path_map[integration];
if (worker_path) {
worker = new Worker(worker_path, { type: 'module' });
} else {
console.error('[ThunderAI] API WebChat Unknown LLM type:', llm);
switch (llm) {
case "chatgpt_api":
worker = new Worker('../js/workers/model-worker-openai.js', { type: 'module' });
break;
case "google_gemini_api":
worker = new Worker('../js/workers/model-worker-google_gemini.js', { type: 'module' });
break;
case "ollama_api":
worker = new Worker('../js/workers/model-worker-ollama.js', { type: 'module' });
break;
case "openai_comp_api":
worker = new Worker('../js/workers/model-worker-openai_comp.js', { type: 'module' });
break;
case "anthropic_api":
worker = new Worker('../js/workers/model-worker-anthropic.js', { type: 'module' });
break;
default:
console.error('[ThunderAI] API WebChat Unknown LLM type:', llm);
break;
}
if (worker) {
messagesArea.init(worker);
messageInput.init(worker);
messageInput.setMessagesArea(messagesArea);
messagesArea.init(worker);
if (integration_options_config[integration]) {
const integration_prefix = integration;
const options_config = integration_options_config[integration];
let prefsToGet = { do_debug: prefs_default.do_debug, hide_thinking: prefs_default.hide_thinking };
for (const key in options_config) {
prefsToGet[`${integration_prefix}_${key}`] = prefs_default[`${integration_prefix}_${key}`];
}
if (integration === 'openai_comp') {
prefsToGet.openai_comp_chat_name = prefs_default.openai_comp_chat_name;
}
let prefs_api = await browser.storage.sync.get(prefsToGet);
if (prompt_id) {
try {
const prompt = await loadPrompt(prompt_id);
if (prompt && prompt.api_type === llm) {
for (const key in options_config) {
const prefKey = `${integration_prefix}_${key}`;
if (prompt[prefKey] !== undefined) {
prefs_api[prefKey] = prompt[prefKey];
}
}
}
} catch (e) {
console.error("[ThunderAI] Error loading prompt settings:", e);
}
}
// Initialize the messageInput component and pass the worker to it
messageInput.init(worker);
messageInput.setMessagesArea(messagesArea);
switch (llm) {
case "chatgpt_api": {
let prefs_api = await browser.storage.sync.get({
chatgpt_api_key: prefs_default.chatgpt_api_key,
chatgpt_model: prefs_default.chatgpt_model,
chatgpt_developer_messages: prefs_default.chatgpt_developer_messages,
chatgpt_api_store: prefs_default.chatgpt_api_store,
do_debug: prefs_default.do_debug,
});
let i18nStrings = {};
const i18n_msg_key = integration === 'openai_comp' ? 'OpenAIComp_api_request_failed' : `${integration}_api_request_failed`;
i18nStrings[i18n_msg_key] = browser.i18n.getMessage(i18n_msg_key);
i18nStrings["chatgpt_api_request_failed"] = browser.i18n.getMessage('chatgpt_api_request_failed');
i18nStrings["error_connection_interrupted"] = browser.i18n.getMessage('error_connection_interrupted');
messageInput.setModel(prefs_api[`${integration_prefix}_model`]);
let llmName = "API";
switch(integration) {
case 'chatgpt': llmName = "ChatGPT"; break;
case 'google_gemini': llmName = "Google Gemini"; break;
case 'ollama': llmName = "Ollama Local"; break;
case 'openai_comp': llmName = prefs_api.openai_comp_chat_name || "OpenAI Comp"; break;
case 'anthropic': llmName = "Claude"; break;
}
messagesArea.setLLMName(llmName);
messagesArea.setHideThinking(!!prefs_api.hide_thinking);
document.title += " [" + llmName + " | " + decodeURIComponent(prompt_name) + "]";
document.title += " [" + llmName + " | " + decodeURIComponent(prompt_name) + "]";
let workerInitMessage = {
messageInput.setModel(prefs_api.chatgpt_model);
messagesArea.setLLMName("ChatGPT");
worker.postMessage({
type: 'init',
chatgpt_api_key: prefs_api.chatgpt_api_key,
chatgpt_model: prefs_api.chatgpt_model,
chatgpt_developer_messages: prefs_api.chatgpt_developer_messages,
chatgpt_api_store: prefs_api.chatgpt_api_store,
do_debug: prefs_api.do_debug,
i18nStrings: i18nStrings,
};
for (const key in options_config) {
const prefKey = `${integration_prefix}_${key}`;
workerInitMessage[prefKey] = prefs_api[prefKey];
}
worker.postMessage(workerInitMessage);
const additional_messages_config = {
chatgpt: [
{ key: 'store', labelKey: 'ChatGPT_chatgpt_api_store', type: 'boolean' },
{ key: 'developer_messages', labelKey: 'ChatGPT_Developer_Messages', type: 'string' },
{ key: 'temperature', labelKey: 'prefs_api_temperature', type: 'string' }
],
google_gemini: [
{ key: 'system_instruction', labelKey: 'GoogleGemini_SystemInstruction', type: 'string' },
{ key: 'temperature', labelKey: 'prefs_api_temperature', type: 'string' },
{ key: 'thinking_budget', labelKey: 'prefs_google_gemini_thinking_budget', type: 'string' }
],
ollama: [
{ key: 'think', labelKey: 'prefs_ollama_think', type: 'boolean' },
{ key: 'temperature', labelKey: 'prefs_api_temperature', type: 'string' },
{ key: 'num_ctx', labelKey: 'prefs_ollama_num_ctx', type: 'number_gt_zero' }
],
openai_comp: [
{ key: 'temperature', labelKey: 'prefs_api_temperature', type: 'string' }
],
anthropic: [
{ key: 'system_prompt', labelKey: 'Anthropic_System_Prompt', type: 'string' },
{ key: 'max_tokens', labelKey: 'prefs_OptionText_anthropic_max_tokens', type: 'number_gt_zero' },
{ key: 'temperature', labelKey: 'prefs_api_temperature', type: 'string' },
{ key: 'extended_thinking_budget', labelKey: 'prefs_OptionText_anthropic_extended_thinking_budget', type: 'number_gt_zero' }
]
};
const getAdditionalMessages = (integration, prefs) => {
const messages = [];
const config = additional_messages_config[integration];
if (!config) return messages;
for (const item of config) {
const prefKey = `${integration}_${item.key}`;
const value = prefs[prefKey];
if (value !== undefined && value !== null && value !== '') {
let displayValue;
let shouldAdd = false;
switch (item.type) {
case 'boolean':
displayValue = value ? 'Yes' : 'No';
shouldAdd = true;
break;
case 'string':
if (value.length > 0) {
displayValue = value;
shouldAdd = true;
}
break;
case 'number_gt_zero':
if (value > 0) {
displayValue = value;
shouldAdd = true;
}
break;
}
if (shouldAdd) {
messages.push({ label: browser.i18n.getMessage(item.labelKey), value: displayValue });
}
}
}
return messages;
};
});
let additional_text_elements = [];
additional_text_elements.push({label: browser.i18n.getMessage("prompt_string"), value: '[' + prompt_id + '] ' + decodeURIComponent(prompt_name)});
additional_text_elements.push(...getAdditionalMessages(integration, prefs_api));
const api_strings = {
chatgpt: "ChatGPT API",
google_gemini: "Google Gemini API",
ollama: "Ollama API",
openai_comp: "OpenAI Compatible API",
anthropic: "Claude API"
};
additional_text_elements.push({label: 'OpenAI Store', value: (prefs_api.chatgpt_api_store ? 'Yes' : 'No')});
if(prefs_api.chatgpt_developer_messages && prefs_api.chatgpt_developer_messages.length > 0) {
additional_text_elements.push({label: browser.i18n.getMessage("ChatGPT_Developer_Messages"), value: prefs_api.chatgpt_developer_messages});
}
additional_text_elements.push({label: "Prompt", value: '[' + prompt_id + '] ' + decodeURIComponent(prompt_name)});
messagesArea.appendUserMessage(getAPIsInitMessageString({
api_string: api_strings[integration],
model_string: prefs_api[`${integration_prefix}_model`],
host_string: prefs_api[`${integration_prefix}_host`],
version_string: prefs_api[`${integration_prefix}_version`],
api_string: "ChatGPT API",
model_string: prefs_api.chatgpt_model,
additional_messages: additional_text_elements
}), "info");
//console.log(`>>>>>>>>>>>>> command: ${llm}_ready_${call_id}`,)
browser.runtime.sendMessage({
command: `${llm}_ready_${call_id}`,
command: "openai_api_ready_" + call_id,
window_id: (await browser.windows.getCurrent()).id
});
break;
}
case "google_gemini_api": {
let prefs_api = await browser.storage.sync.get({
google_gemini_api_key: prefs_default.google_gemini_api_key,
google_gemini_model: prefs_default.google_gemini_model,
google_gemini_system_instruction: prefs_default.google_gemini_system_instruction,
google_gemini_thinking_budget: prefs_default.google_gemini_thinking_budget,
do_debug: prefs_default.do_debug,
});
let i18nStrings = {};
i18nStrings["google_gemini_api_request_failed"] = browser.i18n.getMessage('google_gemini_api_request_failed');
i18nStrings["error_connection_interrupted"] = browser.i18n.getMessage('error_connection_interrupted');
messageInput.setModel(prefs_api.google_gemini_model);
messagesArea.setLLMName("Google Gemini");
let additional_text_elements = [];
if(prefs_api.google_gemini_system_instruction && prefs_api.google_gemini_system_instruction.length > 0) {
additional_text_elements.push({label: browser.i18n.getMessage("GoogleGemini_SystemInstruction"), value: prefs_api.google_gemini_system_instruction});
}
additional_text_elements.push({label: 'Thinking Budget', value: prefs_api.google_gemini_thinking_budget});
additional_text_elements.push({label: "Prompt", value: '[' + prompt_id + '] ' + decodeURIComponent(prompt_name)});
worker.postMessage({
type: 'init',
google_gemini_api_key: prefs_api.google_gemini_api_key,
google_gemini_model: prefs_api.google_gemini_model,
google_gemini_system_instruction: prefs_api.google_gemini_system_instruction,
google_gemini_thinking_budget: prefs_api.google_gemini_thinking_budget,
do_debug: prefs_api.do_debug,
i18nStrings: i18nStrings,
});
messagesArea.appendUserMessage(getAPIsInitMessageString({
api_string: "Google Gemini API",
model_string: prefs_api.google_gemini_model,
additional_messages: additional_text_elements
}), "info");
browser.runtime.sendMessage({
command: "google_gemini_api_ready_" + call_id,
window_id: (await browser.windows.getCurrent()).id
});
break;
}
case "ollama_api": {
let prefs_api = await browser.storage.sync.get({
ollama_host: prefs_default.ollama_host,
ollama_model: prefs_default.ollama_model,
ollama_num_ctx: prefs_default.ollama_num_ctx,
ollama_think: prefs_default.ollama_think,
do_debug: prefs_default.do_debug,
});
let i18nStrings = {};
i18nStrings["ollama_api_request_failed"] = browser.i18n.getMessage('ollama_api_request_failed');
i18nStrings["error_connection_interrupted"] = browser.i18n.getMessage('error_connection_interrupted');
messageInput.setModel(prefs_api.ollama_model);
messagesArea.setLLMName("Ollama Local");
worker.postMessage({
type: 'init',
ollama_host: prefs_api.ollama_host,
ollama_model: prefs_api.ollama_model,
ollama_num_ctx: prefs_api.ollama_num_ctx,
ollama_think: prefs_api.ollama_think,
do_debug: prefs_api.do_debug,
i18nStrings: i18nStrings
});
browser.runtime.sendMessage({
command: "ollama_api_ready_" + call_id,
window_id: (await browser.windows.getCurrent()).id
});
let additional_text_elements = [];
additional_text_elements.push({label: "Prompt", value: '[' + prompt_id + '] ' + decodeURIComponent(prompt_name)});
messagesArea.appendUserMessage(getAPIsInitMessageString({
api_string: "Ollama API",
model_string: prefs_api.ollama_model,
host_string: prefs_api.ollama_host,
additional_messages: additional_text_elements
}), "info");
break;
}
case "openai_comp_api": {
let prefs_api = await browser.storage.sync.get({
openai_comp_host: prefs_default.openai_comp_host,
openai_comp_model: prefs_default.openai_comp_model,
openai_comp_api_key: prefs_default.openai_comp_api_key,
openai_comp_use_v1: prefs_default.openai_comp_use_v1,
openai_comp_chat_name: prefs_default.openai_comp_chat_name,
do_debug: prefs_default.do_debug,
});
let i18nStrings = {};
i18nStrings["OpenAIComp_api_request_failed"] = browser.i18n.getMessage('OpenAIComp_api_request_failed');
i18nStrings["error_connection_interrupted"] = browser.i18n.getMessage('error_connection_interrupted');
messageInput.setModel(prefs_api.openai_comp_model);
messagesArea.setLLMName(prefs_api.openai_comp_chat_name);
worker.postMessage({
type: 'init',
openai_comp_host: prefs_api.openai_comp_host,
openai_comp_model: prefs_api.openai_comp_model,
openai_comp_api_key: prefs_api.openai_comp_api_key,
openai_comp_use_v1: prefs_api.openai_comp_use_v1,
do_debug: prefs_api.do_debug,
i18nStrings: i18nStrings,
});
let additional_text_elements = [];
additional_text_elements.push({label: "Prompt", value: '[' + prompt_id + '] ' + decodeURIComponent(prompt_name)});
messagesArea.appendUserMessage(getAPIsInitMessageString({
api_string: "OpenAI Compatible API",
model_string: prefs_api.openai_comp_model,
host_string: prefs_api.openai_comp_host,
additional_messages: additional_text_elements
}), "info");
browser.runtime.sendMessage({
command: "openai_comp_api_ready_" + call_id,
window_id: (await browser.windows.getCurrent()).id
});
break;
}
case "anthropic_api": {
let prefs_api = await browser.storage.sync.get({
anthropic_api_key: prefs_default.anthropic_api_key,
anthropic_model: prefs_default.anthropic_model,
anthropic_version: prefs_default.anthropic_version,
anthropic_max_tokens: prefs_default.anthropic_max_tokens,
do_debug: prefs_default.do_debug,
});
let i18nStrings = {};
i18nStrings["anthropic_api_request_failed"] = browser.i18n.getMessage('anthropic_api_request_failed');
i18nStrings["error_connection_interrupted"] = browser.i18n.getMessage('error_connection_interrupted');
messageInput.setModel(prefs_api.anthropic_model);
messagesArea.setLLMName("Anthropic");
worker.postMessage({
type: 'init',
anthropic_api_key: prefs_api.anthropic_api_key,
anthropic_model: prefs_api.anthropic_model,
anthropic_version: prefs_api.anthropic_version,
anthropic_max_tokens: prefs_api.anthropic_max_tokens,
do_debug: prefs_api.do_debug,
i18nStrings: i18nStrings,
});
let additional_text_elements = [];
additional_text_elements.push({label: "Prompt", value: '[' + prompt_id + '] ' + decodeURIComponent(prompt_name)});
messagesArea.appendUserMessage(getAPIsInitMessageString({
api_string: "Anthropic API",
model_string: prefs_api.anthropic_model,
version_string: prefs_api.anthropic_version,
additional_messages: additional_text_elements
}), "info");
browser.runtime.sendMessage({
command: "anthropic_api_ready_" + call_id,
window_id: (await browser.windows.getCurrent()).id
});
break;
}
}
@ -242,17 +277,13 @@ worker.onmessage = async function(event) {
messagesArea.handleNewToken(payload.token);
messageInput.setStatusMessage(browser.i18n.getMessage("apiwebchat_receiving_data") + '...');
break;
case 'newThinkingToken':
messagesArea.handleNewThinkingToken(payload.token);
messageInput.setStatusMessage(browser.i18n.getMessage("apiwebchat_receiving_data") + '...');
break;
case 'tokensDone':
await messagesArea.handleTokensDone(promptData);
messageInput.enableInput();
break;
case 'error':
messagesArea.appendBotMessage(payload,'error');
messageInput.enableInput(false);
messageInput.enableInput();
break;
default:
console.error('[ThunderAI] Unknown event type from API worker:', type);
@ -266,29 +297,21 @@ browser.runtime.onMessage.addListener((message, sender, sendResponse) => {
promptData = message;
//send the received prompt to the llm api
if(message.do_custom_text=="1") {
messageInput._showCustomTextField(message.prompt_info?.custom_text_array);
messageInput._showCustomTextField();
}else{
sendPrompt(message);
}
break;
case 'api_send_custom_text':
let userInput = message.custom_text; // From version 4.0.0 this is an array
let userInput = message.custom_text;
if(userInput !== null) {
if(!placeholdersUtils.hasPlaceholder(promptData.prompt, 'additional_text')){
// no additional_text placeholder, do as usual
const inputText = Array.isArray(userInput) ? userInput.map(obj => obj.custom_text).join(' ') : userInput;
promptData.prompt += " " + inputText;
promptData.prompt += " " + userInput;
}else{
// we have the additional_text placeholder, do the magic!
let finalSubs = {};
if (Array.isArray(userInput)) {
userInput.forEach(obj => {
finalSubs[obj.placeholder.replace(/^{%|%}$/g, '').trim()] = obj.custom_text;
});
} else {
finalSubs["additional_text"] = userInput;
}
finalSubs["additional_text"] = userInput;
promptData.prompt = placeholdersUtils.replacePlaceholders({
text: promptData.prompt,
replacements: finalSubs,
@ -300,7 +323,7 @@ browser.runtime.onMessage.addListener((message, sender, sendResponse) => {
break;
case "api_error":
messagesArea.appendBotMessage(message.error,'error');
messageInput.enableInput(false);
messageInput.enableInput();
break;
}
});

View file

@ -3,6 +3,7 @@
<head>
<!-- Other meta tags and stylesheets -->
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<!-- Use the custom tags directly -->

View file

@ -1,6 +1,6 @@
/*
* ThunderAI [https://micz.it/thunderbird-addon-thunderai/]
* Copyright (C) 2024 - 2026 Mic (m@micz.it)
* Copyright (C) 2024 - 2025 Mic (m@micz.it)
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -66,44 +66,15 @@ messagesInputStyle.textContent = `
border-radius: 5px;
padding: 5px;
background: #F2F2F2;
display: flex;
align-items: center;
gap: 3px;
}
#statusLoggerImg{
display: none;
vertical-align: middle;
}
#statusLoggerText{
font-weight: 600;
}
#statusLogger.status-working{
border-color: #2196F3;
background: #E3F2FD;
color: #1565C0;
}
#statusLogger.status-done{
border-color: #4CAF50;
background: #E8F5E9;
color: #2E7D32;
}
@keyframes statusFadeOut {
from { opacity: 1; }
to { opacity: 0; }
}
#statusLogger.status-fadeout{
animation: statusFadeOut 0.5s ease-out forwards;
}
#mzta-custom_text{
padding:10px;
width:50%;
min-width:300px;
width:auto;
max-width:80%;
height:auto;
max-height:80%;
border-radius:5px;
overflow-y:auto;
overflow-x:hidden;
overflow:auto;
position:fixed;
top:50%;
left:50%;
@ -113,18 +84,15 @@ messagesInputStyle.textContent = `
background:#333;
color:white;
border:3px solid white;
box-sizing: border-box;
}
#mzta-custom_loading{
height:50px;display:none;
}
#mzta-custom_textarea{
color:black;
padding:5px;
padding:1px;
font-size:15px;
width:100%;
box-sizing: border-box;
resize: vertical;
}
#mzta-custom_info{
text-align:center;
@ -132,19 +100,6 @@ messagesInputStyle.textContent = `
padding-bottom:10px;
font-size:15px;
}
#mzta-custom_info span{
font-size:0.8em;
}
#mzta-custom_step{
position: absolute;
bottom: 5px;
right: 10px;
font-size: 12px;
color: #ccc;
}
#mzta-custom_btn{
margin-top:7px;
}
@media (prefers-color-scheme: dark) {
#messageInputField {
background-color: #303030;
@ -154,16 +109,6 @@ messagesInputStyle.textContent = `
background: #212121;
color: #ffffff;
}
#statusLogger.status-working{
border-color: #64B5F6;
background: #1A3A5C;
color: #90CAF9;
}
#statusLogger.status-done{
border-color: #81C784;
background: #1B3D1E;
color: #A5D6A7;
}
}
`;
messageInputTemplate.content.appendChild(messagesInputStyle);
@ -220,14 +165,8 @@ messageInputTemplate.content.appendChild(stopButton);
const statusLogger = document.createElement('div');
statusLogger.id = 'statusLogger';
statusLogger.textContent = '';
statusLogger.style.display = 'none';
const statusLoggerImg = document.createElement('img');
statusLoggerImg.id = 'statusLoggerImg';
statusLoggerImg.src = browser.runtime.getURL('/images/mzta-loading.svg');
statusLogger.appendChild(statusLoggerImg);
const statusLoggerText = document.createElement('span');
statusLoggerText.id = 'statusLoggerText';
statusLogger.appendChild(statusLoggerText);
messageInputTemplate.content.appendChild(statusLogger);
//div per custom text
@ -239,7 +178,6 @@ customInfo.textContent = browser.i18n.getMessage("chatgpt_win_custom_text");
customDiv.appendChild(customInfo);
const customTextArea = document.createElement('textarea');
customTextArea.id = 'mzta-custom_textarea';
customTextArea.rows = 5;
customDiv.appendChild(customTextArea);
const customLoading = document.createElement('img');
customLoading.src = browser.runtime.getURL("/images/loading.gif");
@ -250,17 +188,11 @@ customBtn.id = 'mzta-custom_btn';
customBtn.textContent = browser.i18n.getMessage("chatgpt_win_send");
customBtn.classList.add('mzta-btn');
customDiv.appendChild(customBtn);
const customStep = document.createElement('div');
customStep.id = 'mzta-custom_step';
customDiv.appendChild(customStep);
messageInputTemplate.content.appendChild(customDiv);
class MessageInput extends HTMLElement {
model = '';
_doneTimeout = null;
_customTextArray = [];
_currentCustomTextIndex = 0;
constructor() {
super();
@ -271,8 +203,6 @@ class MessageInput extends HTMLElement {
this._sendButton = shadowRoot.querySelector('#sendButton');
this._stopButton = shadowRoot.querySelector('#stopButton');
this._statusLogger = shadowRoot.querySelector('#statusLogger');
this._statusLoggerImg = shadowRoot.querySelector('#statusLoggerImg');
this._statusLoggerText = shadowRoot.querySelector('#statusLoggerText');
this._messageInputField.addEventListener('keydown', this._handleKeyDown.bind(this));
this._sendButton.addEventListener('click', this._handleClick.bind(this));
@ -282,14 +212,8 @@ class MessageInput extends HTMLElement {
this._customTextArea = shadowRoot.querySelector('#mzta-custom_textarea');
this._customLoading = shadowRoot.querySelector('#mzta-custom_loading');
this._customBtn = shadowRoot.querySelector('#mzta-custom_btn');
this._customStep = shadowRoot.querySelector('#mzta-custom_step');
this._customBtn.addEventListener("click", () => { this._customTextBtnClick({customBtn:this._customBtn,customLoading:this._customLoading,customDiv:this._customText}) });
this._customTextArea.addEventListener("keydown", (event) => {
if (event.key === "Enter" && !event.shiftKey) {
event.preventDefault();
this._customTextBtnClick({customBtn:this._customBtn,customLoading:this._customLoading,customDiv:this._customText});
}
});
this._customTextArea.addEventListener("keydown", (event) => { if(event.code == "Enter" && event.ctrlKey) this._customTextBtnClick({customBtn:this._customBtn,customLoading:this._customLoading,customDiv:this._customText}) });
}
connectedCallback() {
@ -316,7 +240,7 @@ class MessageInput extends HTMLElement {
this._messageInputField.value = '';
}
enableInput(showDone = true) {
enableInput() {
// console.log("[ThunderAI] enableInput");
this._messageInputField.value = '';
this._messageInputField.removeAttribute('disabled');
@ -325,56 +249,20 @@ class MessageInput extends HTMLElement {
this._stopButton.setAttribute('disabled', 'disabled');
this._stopButton.style.display = 'none';
this._stopButton.title = browser.i18n.getMessage("chagpt_api_send_button") + ": " + this.model;
if (showDone) {
this.showDoneStatus();
} else {
this.hideStatusMessage();
this.setStatusMessage('');
}
this.hideStatusMessage();
this.setStatusMessage('');
}
setStatusMessage(message) {
this._statusLoggerText.textContent = message;
this._statusLogger.textContent = message;
}
showStatusMessage(state = 'working') {
if (this._doneTimeout) {
clearTimeout(this._doneTimeout);
this._doneTimeout = null;
}
this._setStatusClass('status-' + state);
this._statusLogger.style.display = 'flex';
showStatusMessage() {
this._statusLogger.style.display = 'block';
}
hideStatusMessage() {
this._statusLogger.style.display = 'none';
this._statusLoggerImg.style.display = 'none';
this._setStatusClass(null);
}
_setStatusClass(className) {
this._statusLogger.classList.remove('status-working', 'status-done', 'status-fadeout');
if (className) {
this._statusLogger.classList.add(className);
}
}
showDoneStatus() {
if (this._doneTimeout) {
clearTimeout(this._doneTimeout);
}
this._statusLoggerImg.style.display = 'none';
this.setStatusMessage(browser.i18n.getMessage('apiwebchat_done'));
this._setStatusClass('status-done');
this._statusLogger.style.display = 'flex';
this._doneTimeout = setTimeout(() => {
this._statusLogger.classList.add('status-fadeout');
this._doneTimeout = setTimeout(() => {
this.hideStatusMessage();
this.setStatusMessage('');
}, 500);
}, 1500);
}
_handleKeyDown(event) {
@ -410,7 +298,6 @@ class MessageInput extends HTMLElement {
this.messagesAreaComponent.appendUserMessage(messageContent);
}
this.setStatusMessage(browser.i18n.getMessage('WaitingServerResponse') + '...');
this._statusLoggerImg.style.display = 'inline';
this.showStatusMessage();
this.worker.postMessage({ type: 'chatMessage', message: messageContent });
}
@ -419,64 +306,21 @@ class MessageInput extends HTMLElement {
this._messageInputField.value = msg;
}
_showCustomTextField(custom_text_array){
this._customTextArray = custom_text_array || [];
if (this._customTextArray.length === 0) {
this._customTextArray.push({ placeholder: "{%additional_text%}", info: "" });
}
this._currentCustomTextIndex = 0;
_showCustomTextField(){
this._customText.style.display = 'block';
this._renderCustomTextStep();
}
_renderCustomTextStep() {
const currentItem = this._customTextArray[this._currentCustomTextIndex];
const infoDiv = this.shadowRoot.querySelector('#mzta-custom_info');
this._customTextArea.value = "";
infoDiv.textContent = browser.i18n.getMessage("chatgpt_win_custom_text");
if (currentItem.info && currentItem.info.trim() !== "") {
infoDiv.appendChild(document.createElement("br"));
const infoSpan = document.createElement("span");
infoSpan.textContent = "[" + browser.i18n.getMessage("customPrompts_form_label_ID") + ": " + currentItem.info + "]";
infoDiv.appendChild(infoSpan);
}
if(this._customTextArray.length > 1) {
this._customStep.textContent = (this._currentCustomTextIndex + 1) + "/" + this._customTextArray.length;
this._customStep.style.display = 'block';
} else {
this._customStep.style.display = 'none';
}
this._customTextArea.focus();
}
async _customTextBtnClick(args) {
const customText = this._customTextArea.value;
if (this._customTextArray[this._currentCustomTextIndex]) {
this._customTextArray[this._currentCustomTextIndex].custom_text = customText;
}
this._currentCustomTextIndex++;
if (this._currentCustomTextIndex < this._customTextArray.length) {
this._renderCustomTextStep();
} else {
args.customBtn.disabled = true;
args.customBtn.classList.add('disabled');
args.customLoading.style.display = 'inline-block';
let tab = await browser.tabs.query({ active: true, currentWindow: true });
browser.runtime.sendMessage({ command: "api_send_custom_text", custom_text: this._customTextArray, tabId: tab[0].id });
args.customDiv.style.display = 'none';
args.customBtn.disabled = false;
args.customBtn.classList.remove('disabled');
args.customLoading.style.display = 'none';
}
// console.log(">>>>>>>>>>>>>>>> customText: " + customText);
args.customBtn.disabled = true;
args.customBtn.classList.add('disabled');
args.customLoading.style.display = 'inline-block';
args.customLoading.style.display = 'none';
let tab = await browser.tabs.query({ active: true, currentWindow: true });
browser.runtime.sendMessage({ command: "api_send_custom_text", custom_text: customText, tabId: tab[0].id });
args.customDiv.style.display = 'none';
}
}

View file

@ -1,6 +1,6 @@
/*
* ThunderAI [https://micz.it/thunderbird-addon-thunderai/]
* Copyright (C) 2024 - 2026 Mic (m@micz.it)
* Copyright (C) 2024 - 2025 Mic (m@micz.it)
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -194,25 +194,6 @@ messagesAreaStyle.textContent = `
display: flex;
}
/* Thinking block styles */
details.thinking-block {
border-left: 3px solid #bbb;
background: #f7f7f7;
padding: 0.3em 0.6em;
margin: 0 0 0.6em 0;
font-size: 0.9em;
color: #555;
border-radius: 4px;
}
details.thinking-block > summary {
cursor: pointer;
font-weight: 600;
}
details.thinking-block .thinking-content {
white-space: pre-wrap;
margin-top: 0.3em;
}
/* Dark mode styles */
@media (prefers-color-scheme: dark) {
.added {
@ -221,11 +202,6 @@ messagesAreaStyle.textContent = `
.removed {
background-color:rgb(90, 0, 0);
}
details.thinking-block {
background: #2a2a2a;
color: #bbb;
border-left-color: #555;
}
}
`;
messagesAreaTemplate.content.appendChild(messagesAreaStyle);
@ -242,8 +218,6 @@ class MessagesArea extends HTMLElement {
constructor() {
super();
this.accumulatingMessageEl = null;
this.thinkingAccumulator = '';
this.hideThinking = false;
const shadowRoot = this.attachShadow({ mode: 'open' });
shadowRoot.appendChild(messagesAreaTemplate.content.cloneNode(true));
@ -274,14 +248,6 @@ class MessagesArea extends HTMLElement {
this.llmName = llmName;
}
setHideThinking(val) {
this.hideThinking = !!val;
}
handleNewThinkingToken(token) {
this.thinkingAccumulator += token;
}
async handleTokensDone(promptData = null) {
this.flushAccumulatingMessage();
await this.addActionButtons(promptData);
@ -307,11 +273,7 @@ class MessagesArea extends HTMLElement {
const messageElement = document.createElement('div');
messageElement.classList.add('message', type);
// Replace \n with <br> for correct HTML display
if (type === "info") {
messageElement.appendChild(htmlStringToFragment(messageText));
} else {
messageElement.appendChild(textWithBrToFragment(messageText));
}
messageElement.appendChild(htmlStringToFragment(messageText));
// messageElement.textContent = messageText;
// // Replace \n with <br> elements for correct HTML display
// messageElement.innerHTML = '';
@ -487,34 +449,11 @@ class MessagesArea extends HTMLElement {
closeButton.addEventListener('click', async () => {
browser.runtime.sendMessage({command: "chatgpt_close", window_id: (await browser.windows.getCurrent()).id}); // close window
});
if(promptData.action != 0) {
if(promptData.action != 0) {
actionButtons.appendChild(splitButton);
selectionInfo.style.display = "block"; // show selection info
}
// Save as Summary button (only shown for summary webchat sessions)
if(promptData.prompt_info?.headerMessageId && promptData.prompt_info?.summaryTabId) {
const saveSummaryButton = document.createElement('button');
saveSummaryButton.textContent = browser.i18n.getMessage("webchat_save_as_summary");
saveSummaryButton.classList.add('action_btn');
saveSummaryButton.addEventListener('click', async () => {
let finalText = removeAloneBRs(fullTextHTMLAtAssignment);
const selectedHTML = this.getCurrentSelectionHTML();
if(selectedHTML != "") {
finalText = removeAloneBRs(selectedHTML);
}
await browser.runtime.sendMessage({
command: "chatgpt_saveSummary",
text: finalText,
headerMessageId: promptData.prompt_info.headerMessageId,
tabId: promptData.prompt_info.summaryTabId || promptData.tabId,
});
browser.runtime.sendMessage({command: "chatgpt_close", window_id: (await browser.windows.getCurrent()).id});
});
actionButtons.appendChild(saveSummaryButton);
selectionInfo.style.display = "block";
}
// diff viewer button
if(promptData.prompt_info?.use_diff_viewer == "1") {
const diffvButton = document.createElement('button');
@ -592,67 +531,23 @@ class MessagesArea extends HTMLElement {
this.accumulatingMessageEl.querySelectorAll('.token').forEach(tokenEl => {
fullText += tokenEl.textContent;
});
// If an unterminated <think> block is present (mid-stream), defer the
// markdown render until the closing tag arrives — tokens stay in the DOM
// as raw fading spans, but the partial <think> content is never sent
// through markdown-it or promoted to the final thinking block.
const openThink = fullText.match(/<think>/i);
const closeThink = fullText.match(/<\/think>/i);
if (openThink && !closeThink) {
return;
}
// Extract inline <think>...</think> blocks (Ollama / OpenAI Comp) and strip them from fullText.
let inlineThinking = '';
const thinkRegex = /<think>([\s\S]*?)<\/think>/gi;
let match;
while ((match = thinkRegex.exec(fullText)) !== null) {
inlineThinking += (inlineThinking ? '\n' : '') + match[1];
}
fullText = fullText.replace(thinkRegex, '').replace(/^\s+/, '');
// Combined thinking content: worker-side (Anthropic) + inline (<think> tags)
let combinedThinking = this.thinkingAccumulator;
if (inlineThinking) {
combinedThinking += (combinedThinking ? '\n' : '') + inlineThinking;
}
this.thinkingAccumulator = '';
// Convert Markdown to DOM nodes using the markdown-it library
const md = window.markdownit();
const html = md.render(fullText);
const html = convertNewlinesToBr(md.render(fullText));
this.fullTextHTML += html;
// console.log(">>>>>>>>>>>>>>>> flushAccumulatingMessage this.fullTextHTML: " + this.fullTextHTML);
// Create a new DOM parser
const parser = new DOMParser();
const doc = parser.parseFromString(html, 'text/html');
convertTextNodeNewlinesToBr(doc.body);
// Remove existing tokens
while (this.accumulatingMessageEl.firstChild) {
this.accumulatingMessageEl.removeChild(this.accumulatingMessageEl.firstChild);
}
// Prepend thinking block (if any). hide_thinking controls the initial
// open/collapsed state: true -> collapsed, false -> open. Users can always
// toggle with a click.
if (combinedThinking) {
const details = document.createElement('details');
details.classList.add('thinking-block');
if (!this.hideThinking) details.open = true;
const summary = document.createElement('summary');
summary.textContent = browser.i18n.getMessage('prefs_OptionText_thinking_summary') || 'Thinking';
const content = document.createElement('div');
content.classList.add('thinking-content');
content.textContent = combinedThinking;
details.appendChild(summary);
details.appendChild(content);
this.accumulatingMessageEl.appendChild(details);
}
// Append new nodes
Array.from(doc.body.childNodes).forEach(node => {
@ -680,20 +575,6 @@ class MessagesArea extends HTMLElement {
customElements.define('messages-area', MessagesArea);
function textWithBrToFragment(text) {
const fragment = document.createDocumentFragment();
const segments = text.split(/<br\s*\/?>/gi);
segments.forEach((segment, idx) => {
if (segment.length > 0) {
fragment.appendChild(document.createTextNode(segment));
}
if (idx < segments.length - 1) {
fragment.appendChild(document.createElement('br'));
}
});
return fragment;
}
function htmlStringToFragment(htmlString) {
// console.log(">>>>>>>>>>>>>>>> htmlStringToFragment htmlString: " + htmlString);
const normalizedHtml = htmlString.replace(/\n/g, '<br>');
@ -705,23 +586,8 @@ function htmlStringToFragment(htmlString) {
return fragment;
}
function convertTextNodeNewlinesToBr(element) {
element.childNodes.forEach(node => {
if (node.nodeType === Node.TEXT_NODE) {
if (node.textContent.includes('\n') && node.textContent.trim() !== '') {
const fragment = document.createDocumentFragment();
node.textContent.split('\n').forEach((part, idx, arr) => {
fragment.appendChild(document.createTextNode(part));
if (idx < arr.length - 1) {
fragment.appendChild(document.createElement('br'));
}
});
node.parentNode.replaceChild(fragment, node);
}
} else if (node.nodeType === Node.ELEMENT_NODE) {
convertTextNodeNewlinesToBr(node);
}
});
function convertNewlinesToBr(text) {
return text.replace(/\n/g, '<br>');
}
function removeAloneBRs(htmlString) {

View file

@ -1,230 +0,0 @@
# Architecture
## Extension Structure (Manifest V2)
ThunderAI runs as a standard Thunderbird WebExtension with three main execution contexts:
```
Background Page → mzta-background.html / mzta-background.js
Popup → popup/mzta-popup.html / popup/mzta-popup.js
Options Page → options/mzta-options.html / options/mzta-options.js
Feature Pages → pages/*/
Content Script → js/lib/diff.js (injected into chatgpt.com)
Web Workers → js/workers/model-worker-*.js (one per API provider)
```
## Data Flow: User Action → AI Response
```
User clicks popup or presses Ctrl+Alt+A
popup/mzta-popup.js (renders prompt list, handles selection)
↓ (sendMessage to background)
mzta-background.js (orchestrates everything)
js/mzta-placeholders.js (resolves {%placeholder%} values from email data)
js/mzta-prompts.js (builds final prompt string)
┌─────────────────────────────────────────┐
│ Based on connection_type: │
│ chatgpt_web → js/mzta-chatgpt.js │ (opens ChatGPT window)
│ chatgpt_api → Web Worker (openai) │
│ ollama_api → Web Worker (ollama) │
│ google_gemini → Web Worker (gemini) │
│ anthropic → Web Worker (anthropic)│
│ openai_comp → Web Worker (comp) │
└─────────────────────────────────────────┘
Result returned to background
js/mzta-compose-script.js (inserts text into Thunderbird compose window and display window)
```
### Data Flow: Inline Summary on Message Display
The `summarize_display_mode` preference (`'inline'` or `'webchat'`) controls where
the summary is displayed. The `summarize_auto` preference controls when it is triggered.
- `summarize_auto = 2` (automatic) always generates inline, regardless of `summarize_display_mode`.
- `summarize_auto = 3` (on receive) pre-caches the summary silently when the email arrives via `onNewMailReceived`. When the user later opens the message, the cache hit triggers an instant display.
- `summarize_auto = 1` (manual button) respects `summarize_display_mode`:
- `'inline'` → button click triggers inline generation
- `'webchat'` → button click opens the AI chat window via `_openSummaryWebchat()`
- Context menu summarize also respects `summarize_display_mode`:
- `'inline'` with a single message → generates inline via `_generateSummaryForMessage()`
- `'webchat'` or multiple messages → opens the AI chat window via `openChatGPT()`
```
User opens/selects a message in Thunderbird
mzta-compose-script.js (sends "initSummary" to background)
mzta-background.js (checks summarize_auto + summarize_display_mode prefs)
┌──────────────────────────────────────────────────────────┐
│ summarize_auto = 0 → do nothing │
│ summarize_auto = 1 → show "click to generate" button │
│ display_mode = inline → click triggers inline gen │
│ display_mode = webchat → click opens chat window │
│ summarize_auto = 2 → generate immediately (always inline)│
│ summarize_auto = 3 → cache hit (pre-cached on receive) │
└──────────────────────────────────────────────────────────┘
↓ (if generating inline)
taSummaryStore (check cache / set processing)
↓ (cache miss)
mzta-special-commands (via Web Worker, NOT chatgpt_web)
taSummaryStore (save result via taStorage)
mzta-compose-script.js (render summary banner in message body)
```
### Data Flow: Inline Translation on Message Display
The `translate_auto` preference controls when translation is triggered.
Translation always renders inline (webchat mode has been removed).
The target language is determined by `translate_lang` (fallback on `default_chatgpt_lang`).
```
User opens/selects a message in Thunderbird
mzta-compose-script.js (sends "initTranslation" to background)
mzta-background.js (checks translate + translate_auto prefs)
┌──────────────────────────────────────────────────────────┐
│ translate_auto = 0 → do nothing │
│ translate_auto = 1 → show "click to translate" button │
│ translate_auto = 2 → generate immediately │
└──────────────────────────────────────────────────────────┘
taTranslationStore (check cache / set processing)
↓ (cache miss)
mzta-special-commands (via Web Worker, NOT chatgpt_web)
taTranslationStore (save result via taStorage)
mzta-compose-script.js (render translation banner in message body)
```
### Data Flow: Background Summary on Email Receive (summarize_auto = 3)
When `summarize_auto = 3`, a summary is generated silently when a new email arrives. The flow mirrors `add_tags_auto`:
```
New email arrives
browser.messages.onNewMailReceived
newEmailListener (checks _process_incoming, which includes summarize_auto === 3)
processEmails({ summarizeOnReceive: true })
↓ (single loop — shared with addTagsAuto / spamFilter / translateOnReceive)
_generateSummaryForMessage(headerMessageId, null, { messageData })
← tabId is null → no UI messages sent, silent pre-cache
taSummaryStore.saveSummary()
[later] user opens the message → initSummary → cache hit → showSummary instantly
```
### Data Flow: Background Translation on Email Receive (translate_auto = 3)
When `translate_auto = 3`, a translation is generated silently when a new email arrives. Mirrors the summarize on-receive flow:
```
New email arrives
browser.messages.onNewMailReceived
newEmailListener (checks _process_incoming, which includes translate_auto === 3)
processEmails({ translateOnReceive: true })
↓ (single loop — shared with addTagsAuto / spamFilter / summarizeOnReceive)
_generateTranslationForMessage(headerMessageId, null, { messageData })
← tabId is null → no UI messages sent, silent pre-cache
taTranslationStore.saveTranslation()
[later] user opens the message → initTranslation → cache hit → showTranslation instantly
```
## Key Modules
| File | Role |
|------|------|
| `mzta-background.js` | Main orchestrator: listens for messages, coordinates all features |
| `js/mzta-menus.js` | Context menu creation and management |
| `js/mzta-prompts.js` | Prompt definitions (built-in) and custom prompt loading |
| `js/mzta-placeholders.js` | Placeholder definitions and resolution logic |
| `js/mzta-utils.js` | General utilities (email parsing, storage helpers, etc.) |
| `js/mzta-utils-prompt.js` | Prompt-specific utilities (text truncation, lang injection, `buildSummaryPrompt()` for unified summary prompt assembly, `buildTranslationPrompt()` for translation prompt assembly) |
| `js/mzta-compose-script.js` | Content script for compose and message display: injects AI response into compose window, renders unified toolbar (spam badge, summary/translation trigger buttons) and content panels (generic error, spam explanation, summary, translation) in message display via `#mzta-container` |
| `js/mzta-chatgpt.js` | ChatGPT Web integration (opens browser window, reads DOM) |
| `js/mzta-special-commands.js` | Handles special prompt actions (add_tags, calendar, task) |
| `js/mzta-spamreport.js` | Spam filter logic |
| `js/mzta-i18n.js` | i18n helper (wraps `browser.i18n.getMessage`) |
| `js/mzta-logger.js` | Debug logging (gated by `do_debug` pref) |
| `js/mzta-store.js` | Storage abstraction helpers |
| `js/mzta-storage.js` | Unified per-message storage layer (`taStorage` class) for summary, spam, and translation data |
| `js/mzta-summarystore.js` | Summary-specific storage wrapper (`taSummaryStore` class) with caching, truncation, and processing-state tracking |
| `js/mzta-translationstore.js` | Translation-specific storage wrapper (`taTranslationStore` class) with caching, truncation, and processing-state tracking |
| `js/mzta-working-status.js` | Visual status indicator during AI processing |
| `js/mzta-addtags-exclusion-list.js` | Tag exclusion list management |
| `js/mzta-placeholders-autocomplete.js` | Autocomplete for placeholders in prompt editor |
## API Modules (`js/api/`)
Each file handles HTTP communication for one provider:
| File | Provider |
|------|----------|
| `anthropic.js` | Claude (Anthropic) API |
| `google_gemini.js` | Google Gemini API |
| `ollama.js` | Ollama (self-hosted) |
| `openai_comp.js` | OpenAI-compatible APIs |
| `openai_comp_configs.js` | Pre-configured providers (DeepSeek, Grok, Mistral, OpenRouter, Perplexity) |
| `openai_responses.js` | OpenAI Responses API |
## Web Workers (`js/workers/`)
Each API provider has a dedicated Web Worker so API calls don't block the UI:
- `model-worker-anthropic.js`
- `model-worker-google_gemini.js`
- `model-worker-ollama.js`
- `model-worker-openai_comp.js`
- `model-worker-openai_responses.js`
Workers receive a message with the prompt and settings, make the API call, and post back the result.
## Feature Pages (`pages/`)
Each subdirectory is a self-contained settings/UI page for a specific feature:
| Directory | Feature |
|-----------|---------|
| `addtags/` | Auto-tagging configuration |
| `customprompts/` | Custom prompt editor |
| `customdataplaceholders/` | Custom placeholder editor |
| `get-calendar-event/` | Calendar event extraction settings |
| `get-task/` | Task creation settings |
| `menu_order/` | Drag-and-drop reordering and visibility control for popup and context menus |
| `spamfilter/` | Spam filter settings |
| `summarize/` | Email summarization settings |
| `translate/` | Email translation settings |
| `onboarding/` | First-run welcome page |
| `_lib/` | Shared libraries used by pages |
## Storage
All preferences are stored via `browser.storage.local`. The keys and default values are defined in `options/mzta-options-default.js` (`prefs_default` export). Custom prompts and custom placeholders are stored separately in storage under their own keys.
### Per-Message Data Storage
Per-message data (summaries, spam reports, translations) is stored via `js/mzta-storage.js` (`taStorage` class). Each record is keyed by `msg:<headerMessageId>` in `messenger.storage.local` and follows schema version 1. Records contain optional fields: `summary`, `spam`, `translation`, plus metadata (`v`, `ts`). The `taStorage` class provides typed read/write/delete methods per field, automatic record cleanup when all fields are removed, and age-based cleanup.
`js/mzta-summarystore.js` (`taSummaryStore` class) wraps `taStorage` for summary-specific operations: load/save/remove summaries, track in-flight generation state via `browser.storage.session`, enforce a 100-entry cache limit with oldest-first truncation, and store error states.
`js/mzta-translationstore.js` (`taTranslationStore` class) wraps `taStorage` for translation-specific operations: load/save/remove translations, track in-flight generation state via `browser.storage.session`, enforce a 100-entry cache limit with oldest-first truncation, and store error states. Each translation record stores `translated_text`, `lang`, and optional error information.

View file

@ -1,203 +0,0 @@
# Prompts System
## Overview
Prompts are the core user-facing feature of ThunderAI. Each prompt defines an AI instruction and how it behaves. There are two kinds:
- **Built-in prompts** — defined in `js/mzta-prompts.js`
- **Custom prompts** — created by the user and stored in `browser.storage.local`
## Prompt Properties
### Base Properties (built-in only)
| Property | Type | Description |
|----------|------|-------------|
| `id` | string | Unique identifier |
| `name` | string | `__MSG_key__` i18n reference or plain text |
| `prompt` | string | The prompt template text (may contain `{%placeholder%}` tokens) |
| `type` | number | `0` = always visible, `1` = reading email only, `2` = composing only |
| `action` | number | `0` = close, `1` = reply (open compose), `2` = substitute text in-place |
| `need_selected` | number | `0` = use full message body, `1` = requires text selection |
| `need_signature` | number | `0` = no signature, `1` = include signature |
| `need_custom_text` | number | `0` = no custom input, `1` = show custom text input field |
| `define_response_lang` | number | `0` = no language hint, `1` = append response language instruction |
| `use_diff_viewer` | number | `0` = normal output, `1` = show diff viewer (ChatGPT Web only) |
### User Properties (stored per-prompt in storage)
| Property | Type | Description |
|----------|------|-------------|
| `enabled` | number | `0` = hidden, `1` = shown in menus |
| `position_display` | number | Sort order for the popup menu in reading view |
| `position_compose` | number | Sort order for the popup menu in compose view |
| `position_context` | number | Sort order for the context menu |
| `show_in` | string | `"popup"` = popup only, `"context"` = context menu only, `"both"` = both, `"none"` = hidden from all menus. Default: `"popup"` for default/custom prompts, `"both"` for special prompts |
| `custom_icon` | string | Filename (with extension) of an icon in `images/context_menu/custom/` used as the context-menu icon. Empty string = no icon. Only used for non-special prompts (special prompts use their hard-coded icons in `specialPromptToContextMenuID`). Selectable from a dropdown on the Menu Order page, context-menu tab. |
### Per-Prompt API Override Properties
Each prompt can override the global API connection. These mirror the keys in `integration_options_config` and `prefs_default`:
| Property | Description |
|----------|-------------|
| `connection_type` | Override API type for this prompt |
| `chatgpt_web_model` | Override ChatGPT Web model |
| `chatgpt_web_project` | Override ChatGPT Web project |
| `chatgpt_web_custom_gpt` | Override custom GPT |
| All `chatgpt_*`, `ollama_*`, `openai_comp_*`, `google_gemini_*`, `anthropic_*` keys | Override specific API settings |
## Special Prompts
Some prompts trigger additional Thunderbird actions beyond just sending text to the AI. They are identified by their `id`:
| ID | Feature |
|----|---------|
| `add_tags` | Auto-tag the email after AI response |
| `spamfilter` | Classify as spam and optionally move email |
| `summarize` | Summarize email content |
| `get_calendar_event` | Extract and create a calendar event |
| `get_task` | Extract and create a task |
| `translate` | Translate email content into a target language |
These special prompts can have their own dedicated API integration settings (configured in the Options page). The list of these special prompts is in `options/mzta-options-default.js` as `special_prompts_with_integration`.
## Menu System
### Popup Menu
- Displays prompts filtered by `show_in` (`"popup"` or `"both"`) and by tab context (`type` property: reading view shows types `0`+`1`, compose view shows types `0`+`2`)
- Ordering: always position-based using `position_display` (reading view) or `position_compose` (compose view). Alphabetical ordering has been removed
- Special prompts retain their colored background (CSS class `special_prompt`) in the popup based on `is_special == "1"`
### Context Menu
- Dynamically built from all prompts with `show_in` set to `"context"` or `"both"`, filtered to reading types only (`type` 0 or 1)
- Appears as a "ThunderAI" submenu in the `message_list` context
- Ordering: position-based using `position_context` (fallback to alphabetical only when positions are equal)
- Special prompts (add_tags, spamfilter, summarize, translate) route through `processEmails()` for batch processing; regular prompts execute via `menus.executeMenuAction()`
- Icons: special prompts use dedicated icons (defined in `contextMenuIconsPath`); all other prompts use the addon icon (`images/icon-32.png`)
- Add Tags in context menu assigns tags automatically (`addTagsAuto: true`), while in the popup it shows the interactive tag selection form
### Menu Order Page (`pages/menu_order/`)
Dedicated page for reordering, enabling, and disabling menu items across both the popup and the context menu. Opened from the options page via the "Menu Order" button.
**UI layout** — two side-by-side panels:
- **Popup Menu panel**: sub-tabs for "Reading" / "Composing" switch the list between `position_display` / `position_compose` ordering and between the allowed types (`0`+`1` vs `0`+`2`)
- **Context Menu panel**: single list ordered by `position_context`. Items with `type: "2"` (composing-only) are never shown here
Each list has two sections:
- **Visible items**: active for the menu (`show_in` includes the menu), draggable to reorder
- **Hidden items**: inactive for the menu (`show_in` excludes the menu), sorted alphabetically, not draggable
**Toggle coordination** — flipping the checkbox updates the prompt's `show_in` with four-state logic:
- Popup ON: `"none"``"popup"`, `"context"``"both"`
- Popup OFF: `"popup"``"none"`, `"both"``"context"`
- Context ON: `"none"``"context"`, `"popup"``"both"`
- Context OFF: `"context"``"none"`, `"both"``"popup"`
**Drag and drop** — native HTML5 DnD assigns sequential position numbers (1, 2, 3, ...) to `position_display`, `position_compose`, or `position_context` depending on which list is being sorted.
**Exclusions from the UI** (preserved on save so data is not lost):
- Prompts with `enabled === 0` (disabled)
- Special prompts whose base definition has `show_in: "none"` (internal prompts like `prompt_summarize_email_template` and `prompt_summarize_email_separator`) — retrieved via `getHiddenSpecialPromptIds()`
- Special prompts whose feature is not active — retrieved from background via `get_active_special_ids` message, which calls `getActiveSpecialPromptsIDs()` with current prefs and `_sparks_presence`
**Cross-tab reload** — the page listens on `browser.storage.onChanged` for changes to `_default_prompts_properties`, `_custom_prompt`, or `_special_prompts`. When one of those keys changes (e.g. user saves from the Custom Prompts page in another tab), the page reloads its data with a 200ms debounce. Any unsaved local changes are discarded to avoid overwriting the other page's work.
**Save flow**:
1. Re-concat preserved prompts (disabled + hidden-specials + inactive-feature specials) with the UI-visible prompts
2. Split by `is_default` / `is_special` and call `setDefaultPromptsProperties()`, `setCustomPrompts()`, `setSpecialPrompts()`
3. Send `reload_menus` to the background to rebuild both menus
### Alphabetic-to-Position Migration
The `dynamic_menu_order_alphabet` preference (previously a user-facing option) has been retired and removed from the UI, but the key still exists in storage as a one-shot migration flag. At every background startup, `migrateMenuOrderAlphabetic()` in `js/mzta-prompts.js` runs:
1. Reads `dynamic_menu_order_alphabet` (defaults to `true` if unset)
2. If `true`: sorts all visible prompts with special prompts first (alphabetically), then the rest (alphabetically), and assigns sequential `position_display` = `position_compose` = `position_context` numbers. Hidden special prompts are preserved untouched.
3. Persists the new positions via `setDefaultPromptsProperties` / `setCustomPrompts` / `setSpecialPrompts`
4. Sets `dynamic_menu_order_alphabet = false` in sync storage so the migration does not run again
This ensures existing users upgrading from the previous alphabetical-default behaviour get the same visible ordering on first run, while subsequent launches keep whatever custom ordering the user has set.
### Special Prompt Visibility Dependencies
`getActiveSpecialPromptsIDs()` in `js/mzta-utils.js` maps feature prefs to active special prompt IDs. Notable dependency:
- `prompt_get_calendar_event_from_clipboard` is emitted only if **both** `get_calendar_event` and `get_calendar_event_from_clipboard` are active. If `get_calendar_event` is off, neither calendar prompt is shown regardless of the clipboard pref.
### Summarize: Dual-Mode Prompt System
The summarize feature uses two distinct prompt pathways:
**Context Menu Summarize** (right-click on messages in message list):
- Activated via the `summarize` context menu item, controlled by the `summarize` feature flag
- Uses 3 special prompts stored in `specialPrompts`:
- `prompt_summarize` — the main instruction prompt for the LLM
- `prompt_summarize_email_template` — template for formatting each email's content
- `prompt_summarize_email_separator` — separator text between multiple emails
- Supports multi-email summarization: each selected message is formatted with the email template, joined by the separator, then prepended with the instruction prompt
- All 3 prompts support placeholder autocomplete (`{%placeholder%}` syntax)
- Result is displayed via `openChatGPT()` in the standard chat output window (not inline)
- Default prompt texts are stored as i18n keys: `prompt_summarize_full_text`, `prompt_summarize_email_template_full_text`, `prompt_summarize_email_separator_full_text`
**Inline Summary on Message Display** (automatic or manual per `summarize_auto` pref):
- Uses the same 3 special prompts as webchat mode, via `taPromptUtils.buildSummaryPrompt()` in `js/mzta-utils-prompt.js`
- Does **not** support `chatgpt_web` connection type (shows error if configured)
- Result is rendered as a styled banner at the top of the message body via `mzta-compose-script.js`
- Banner includes a refresh button (↻) to regenerate the summary
- Cached per-message via `taSummaryStore` / `taStorage` (max 100 entries)
**Unified Prompt Building** — `taPromptUtils.buildSummaryPrompt(messageDataArray)`:
- All summary paths (inline, webchat single, webchat multi) use this single method
- Accepts an array of `{ message, fullMessage }` entries
- Returns `{ promptText, promptInfo }` where `promptInfo` is the `prompt_summarize` prompt object
### Translate: Inline-Only Prompt System
The translate feature uses a single special prompt (`prompt_translate_this`) for translating emails. Translation always renders inline (no webchat mode).
**Inline Translation on Message Display** (controlled by `translate_auto` pref):
- Uses a single special prompt: `prompt_translate_this`
- The prompt uses placeholders (`{%mail_subject%}`, `{%mail_html_body%}`, `{%thunderai_translate_lang%}`, `{%thunderai_translate_exclude_lang%}`) resolved via the standard placeholder system
- The AI response is a JSON object: `{ "subject": "...", "body": "...", "status": "1"|"-1" }`
- `status = "1"`: translation completed, subject and body are displayed
- `status = "-1"`: translation skipped (excluded/target language), a "skipped" message is shown
- Target language is determined by `translate_lang` pref, falling back to `default_chatgpt_lang`
- Does **not** support `chatgpt_web` connection type (shows error if configured)
- Result is rendered as a styled banner (green/teal theme) in the message body via `mzta-compose-script.js`
- Banner includes refresh (↻) and delete (×) buttons
- Cached per-message via `taTranslationStore` / `taStorage` (max 100 entries)
- The prompt was originally a regular prompt (`defaultPrompts`) and was moved to `specialPrompts` with `is_special: "1"` and `type: "1"` (reading email only)
**Prompt Building** — `taPromptUtils.buildTranslationPrompt(fullMessage)`:
- Retrieves the `prompt_translate_this` special prompt text
- Resolves placeholders via `placeholdersUtils.getPlaceholdersValues()` + `replacePlaceholders()`
- Returns `{ promptText, promptInfo }`
## Prompt Types Reference
```
type 0 → shown when reading AND composing
type 1 → shown only when reading an email (message display)
type 2 → shown only when composing an email
```
## Action Types Reference
```
action 0 → no output, just close (e.g. for tag/spam actions handled in background)
action 1 → open a reply compose window with AI response
action 2 → replace selected text (or insert) in compose window
```
## Adding a New Built-in Prompt
1. Add the prompt object to the `defaultPrompts` array in `js/mzta-prompts.js`
2. Add the `name` string key to `_locales/en/messages.json`
3. If the prompt text needs a localized string, add it to `_locales/en/messages.json` as well
4. Reference any needed placeholders using `{%placeholder_id%}` syntax in the `prompt` field
## Custom Prompts
Custom prompts are stored in `browser.storage.local` and managed via `pages/customprompts/`. They follow the same property structure as built-in prompts but are created/edited/deleted by the user through the UI. Custom placeholders can also be referenced in custom prompt text.

View file

@ -1,79 +0,0 @@
# Placeholders System
## Overview
Placeholders are dynamic tokens embedded in prompt text that get replaced with real data at runtime (email content, headers, user input, etc.).
**Format:** `{%placeholder_id%}`
Example in a prompt: `"Summarize this email: {%mail_text_body_or_selected%}"`
## Placeholder Properties
| Property | Type | Description |
|----------|------|-------------|
| `id` | string | Unique identifier used in `{%id%}` tokens |
| `name` | string | Display name (i18n `__MSG_key__` or plain text) |
| `default_value` | string | Value used if placeholder cannot be resolved |
| `type` | number | `0` = always, `1` = reading only, `2` = composing only |
| `is_default` | string | `"1"` = built-in (not editable/deletable), `"0"` = custom |
| `is_dynamic` | string | `"0"` = fixed value, `"1"` = dynamic (takes a parameter after `:`) |
| `enabled` | number | `0` = disabled, `1` = enabled |
| `text` | string | Content for custom placeholders only |
## Built-in Placeholders (defined in `js/mzta-placeholders.js`)
| ID | Description | Type |
|----|-------------|------|
| `mail_text_body` | Full plain text of the email | 0 |
| `mail_html_body` | Full HTML of the email | 0 |
| `mail_typed_text` | Text typed so far in compose window | 2 |
| `mail_text_body_or_selected` | Plain text body, or selected text if any | 1 |
| `mail_html_body_or_selected` | HTML body, or selected HTML if any | 1 |
| `mail_selected_text` | Only the selected text | 1 |
| `mail_selected_html` | Only the selected HTML | 1 |
| `mail_subject` | Email subject line | 0 |
| `mail_date` | Email date | 1 |
| `mail_author` | Email sender | 0 |
| `mail_recipients` | Email recipients | 0 |
| `mail_tags` | Current tags on the email | 1 |
| `mail_available_tags` | All available tags in Thunderbird | 1 |
| `identity_name` | Current identity display name | 0 |
| `identity_email` | Current identity email address | 0 |
| `identity_signature` | Current identity signature | 0 |
| `additional_text[id]` | User input field (dynamic, shows input in popup) | 0 |
| `mail_header:name` | Any email header by name (dynamic) | 1 |
| `mail_full_headers` | All mail headers (key: value format, newline-separated) | 1 |
## Dynamic Placeholders
Dynamic placeholders use a colon separator to pass a parameter:
```
{%additional_text:my_field_id%} → shows an input field labelled "my_field_id" in the popup
{%mail_header:x-spam-score%} → fetches the X-Spam-Score header value
```
The `is_dynamic: "1"` property signals this behavior in the placeholder definition.
## Custom Placeholders
Users can define their own placeholders via `pages/customdataplaceholders/`. Custom placeholders:
- Have `is_default: "0"`
- Have a `text` property containing the replacement value
- Are stored in `browser.storage.local`
- Are merged with default placeholders at runtime before prompt processing
## Placeholder Resolution Order
1. Built-in placeholders are defined in `js/mzta-placeholders.js`
2. Custom placeholders are loaded from storage
3. At runtime, `mzta-background.js` gathers email data (via Thunderbird APIs)
4. Each `{%id%}` token in the prompt string is replaced with the resolved value
5. If a value cannot be resolved, `default_value` is used as fallback
## Adding a New Built-in Placeholder
1. Add the object to the `defaultPlaceholders` array in `js/mzta-placeholders.js`
2. Add the `name` i18n key to `_locales/en/messages.json` as `placeholder_<id>` (or choose a descriptive key)
3. Implement the resolution logic in the relevant section of `mzta-background.js`

View file

@ -1,119 +0,0 @@
# API Integrations
## Connection Types
The active AI provider is controlled by the `connection_type` preference. Possible values:
| `connection_type` value | Provider |
|------------------------|----------|
| `chatgpt_web` | ChatGPT Web (no API key, opens browser window) |
| `chatgpt_api` | OpenAI API (ChatGPT via API key) |
| `ollama_api` | Ollama (self-hosted LLM) |
| `openai_comp_api` | OpenAI-compatible API |
| `google_gemini_api` | Google Gemini API |
| `anthropic_api` | Claude (Anthropic) API |
The global default is `chatgpt_web`. Each special prompt (`add_tags`, `spamfilter`, etc.) can independently override this via its own `{prefix}_connection_type` pref.
## Provider Configuration
Each provider has its own settings block in `integration_options_config` (`options/mzta-options-default.js`):
### ChatGPT Web
Controlled via `js/mzta-chatgpt.js`. Opens a browser window to `chatgpt.com`, injects the prompt via DOM automation, and reads back the response. Settings: `chatgpt_web_model`, `chatgpt_web_tempchat`, `chatgpt_web_project`, `chatgpt_web_custom_gpt`, `chatgpt_web_load_wait_time`.
Content script `js/lib/diff.js` is injected into ChatGPT pages for diff-view support.
### OpenAI API (`chatgpt_api`)
- Module: `js/api/openai_responses.js`
- Worker: `js/workers/model-worker-openai_responses.js`
- Settings keys: `chatgpt_api_key`, `chatgpt_model`, `chatgpt_developer_messages`, `chatgpt_temperature`, `chatgpt_store`
### Ollama (`ollama_api`)
- Module: `js/api/ollama.js`
- Worker: `js/workers/model-worker-ollama.js`
- Settings keys: `ollama_host`, `ollama_model`, `ollama_num_ctx`, `ollama_temperature`, `ollama_think`, `ollama_format_json`
- Requires CORS to be configured on the Ollama server
### OpenAI-Compatible (`openai_comp_api`)
- Module: `js/api/openai_comp.js`
- Worker: `js/workers/model-worker-openai_comp.js`
- Settings keys: `openai_comp_host`, `openai_comp_model`, `openai_comp_api_key`, `openai_comp_use_v1`, `openai_comp_chat_name`, `openai_comp_temperature`
- Pre-configured providers: `js/api/openai_comp_configs.js` (DeepSeek, Grok, Mistral, OpenRouter, Perplexity)
### Google Gemini (`google_gemini_api`)
- Module: `js/api/google_gemini.js`
- Worker: `js/workers/model-worker-google_gemini.js`
- Settings keys: `google_gemini_api_key`, `google_gemini_model`, `google_gemini_system_instruction`, `google_gemini_thinking_budget`, `google_gemini_temperature`
### Anthropic / Claude (`anthropic_api`)
- Module: `js/api/anthropic.js`
- Worker: `js/workers/model-worker-anthropic.js`
- Settings keys: `anthropic_api_key`, `anthropic_model`, `anthropic_version`, `anthropic_max_tokens`, `anthropic_system_prompt`, `anthropic_temperature`, `anthropic_extended_thinking_budget`
- **Extended thinking**: when `anthropic_extended_thinking_budget > 0`, the request body adds `thinking: { type: 'enabled', budget_tokens: N }` and **omits** `temperature` (the Claude API forbids setting temperature with extended thinking). Thinking output arrives in the SSE stream as `content_block_delta` events with `delta.type === 'thinking_delta'` and is forwarded to the webchat UI as `newThinkingToken` messages, captured into a `thinkingAccumulator` in the worker and passed on `tokensDone`.
## Thinking output in the webchat UI
Two provider categories emit reasoning/thinking content:
- **Ollama / OpenAI Compatible**: thinking arrives inline in the normal token stream wrapped in `<think>…</think>` tags. `MessagesArea.flushAccumulatingMessage()` strips these blocks from the rendered text and renders them as a `<details class="thinking-block">` prepended to the answer. If an unterminated `<think>` is detected mid-stream, the flush is deferred until the closing tag arrives.
- **Anthropic**: thinking is captured in the worker and posted to the controller as `newThinkingToken`. `MessagesArea` accumulates it and renders the same `<details>` block on final flush.
The global `hide_thinking` pref (default `true`) controls the **initial open/collapsed state** of the thinking block: `true` → collapsed, `false` → open. The user can always toggle by clicking. Thinking content is never discarded. Other providers (Google Gemini, OpenAI Responses, ChatGPT Web) are not affected by this UI logic.
## Configuration Validation
For special prompts (`mzta_specialCommand`), required fields are validated in `initWorker()` (`js/mzta-special-commands.js`) **before** the worker is created. If a required field is empty, an `Error` with `isConfigError = true` is thrown. Validation covers:
| Provider | Required fields |
|----------|----------------|
| `chatgpt_api` | `chatgpt_api_key`, `chatgpt_model` |
| `google_gemini_api` | `google_gemini_api_key`, `google_gemini_model` |
| `ollama_api` | `ollama_host`, `ollama_model` |
| `openai_comp_api` | `openai_comp_host`, `openai_comp_model` |
| `anthropic_api` | `anthropic_api_key`, `anthropic_model`, `anthropic_version` |
Validation is skipped when `use_specific_api = true` (i.e., the prompt's own `api_type` overrides the global setting — credentials come from the prompt config, not global prefs).
The `isConfigError` flag on the thrown error tells callers in `mzta-background.js` to display the error in the panel **without saving it to storage** — so the user can fix settings and retry cleanly.
Feature-specific routing of `isConfigError`:
- `summarize` / `translate` / `spamfilter`: the error is shown in their dedicated panel (summary / translation / spam panel) and **not** persisted to storage.
- `add_tags`: it has **no dedicated panel**, so the error is routed to the **generic error panel** via `showGenericError(errMsg, source)` in `mzta-background.js`, which broadcasts a `showGenericError` message to all tabs. The content script `js/mzta-compose-script.js` renders it as `#mzta-generic-error` inside `#mzta-container`. The panel is dismissible and reusable by any future feature without its own UI.
For regular prompts (`openChatGPT()`), validation still happens inside the listener callback after the API webchat window is created (unchanged behavior).
## Web Worker Pattern
For all API-based providers (everything except ChatGPT Web), the call goes through a Web Worker:
```
mzta-background.js
→ creates new Worker('js/workers/model-worker-<provider>.js')
→ postMessage({ prompt, settings })
→ worker makes HTTP fetch to provider API
→ worker postMessage({ result }) back
→ background handles result
```
This keeps API calls off the main thread and avoids blocking the Thunderbird UI.
## Optional Permissions
API calls require host permissions. These are declared as `optional_permissions` in `manifest.json` and requested at runtime:
- `https://*.chatgpt.com/*` and `https://*.openai.com/*` for ChatGPT
- `https://*.anthropic.com/*` for Claude
- `https://*/*` and `http://*/*` for Ollama and OpenAI-compatible endpoints
## Adding a New Provider
1. Create `js/api/<provider>.js` with the API call logic
2. Create `js/workers/model-worker-<provider>.js` that imports and calls the API module
3. Add a new `connection_type` value constant
4. Add settings keys to `integration_options_config` in `options/mzta-options-default.js`
5. Add UI controls to `options/mzta-options.html` and `options/mzta-options.js`
6. Add the new `connection_type` case to the dispatch logic in `mzta-background.js`
7. Add required host permissions to `manifest.json` optional_permissions
8. Add i18n strings to `_locales/en/messages.json`

View file

@ -1,161 +0,0 @@
# Options & Settings System
## Overview
All extension preferences are stored in `browser.storage.local`. Defaults and the full list of valid keys are defined in `options/mzta-options-default.js`.
## Key Exports from `mzta-options-default.js`
| Export | Description |
|--------|-------------|
| `prefs_default` | All preference keys with their default values |
| `integration_options_config` | Per-provider API settings structure |
| `getDynamicSettingsDefaults(keysFilter)` | Returns per-special-prompt integration defaults |
| `getDynamicSettingValue(prefs, prefix, settingName)` | Reads a prefixed setting for a special prompt |
## Settings Structure
### Global Integration Settings
Stored flat in `prefs_default` with `{provider}_{key}` naming:
```
chatgpt_api_key, chatgpt_model, chatgpt_developer_messages, chatgpt_temperature, chatgpt_store
ollama_host, ollama_model, ollama_num_ctx, ollama_temperature, ollama_think
openai_comp_host, openai_comp_model, openai_comp_api_key, openai_comp_use_v1, openai_comp_chat_name, openai_comp_temperature
google_gemini_api_key, google_gemini_model, google_gemini_system_instruction, google_gemini_thinking_budget, google_gemini_temperature
anthropic_api_key, anthropic_model, anthropic_version, anthropic_max_tokens, anthropic_system_prompt, anthropic_temperature, anthropic_extended_thinking_budget
```
Plus the global connection selector:
```
connection_type (default: 'chatgpt_web')
use_specific_integration (default: false)
```
### Special Prompt Integration Overrides
The 6 special prompts (`add_tags`, `spamfilter`, `summarize`, `get_calendar_event`, `get_task`, `translate`) each get their own `use_specific_integration` and `connection_type` keys:
```
{prefix}_use_specific_integration (default: false)
{prefix}_connection_type (default: 'chatgpt_api')
```
These are generated programmatically at the bottom of `mzta-options-default.js` using `special_prompts_with_integration` array.
### UI & Feature Preferences
| Key | Default | Description |
|-----|---------|-------------|
| `do_debug` | `false` | Enable debug logging |
| `chatgpt_win_height` | `800` | ChatGPT window height |
| `chatgpt_win_width` | `700` | ChatGPT window width |
| `chatgpt_win_top` | `''` | Window top position |
| `chatgpt_win_left` | `''` | Window left position |
| `chatgpt_win_save_position` | `false` | Remember window position |
| `default_chatgpt_lang` | `''` | Force response language |
| `default_sign_name` | `''` | Default signature name |
| `reply_type` | `'reply_all'` | Default reply type |
| `composing_plain_text` | `false` | Use plain text in compose |
| `chatgpt_web_model` | `''` | ChatGPT Web model override |
| `chatgpt_web_tempchat` | `false` | Use temporary chat |
| `chatgpt_web_project` | `''` | ChatGPT Web project |
| `chatgpt_web_custom_gpt` | `''` | Custom GPT URL |
| `chatgpt_web_load_wait_time` | `1000` | Wait time (ms) for ChatGPT page |
| `dynamic_menu_force_enter` | `false` | Force Enter to submit in popup |
| `dynamic_menu_order_alphabet` | `true` | Internal migration flag only; no UI. Set to `false` by `migrateMenuOrderAlphabetic()` on first boot after upgrade to bootstrap position-based ordering. See `claude-spec/02-prompts.md` for details. |
| `placeholders_use_default_value` | `false` | Use placeholder defaults when empty |
| `hide_thinking` | `true` | Controls the initial state of the thinking `<details>` block prepended above the answer: `true` = collapsed by default, `false` = open by default. The user can always toggle with a click; thinking content is never discarded. |
| `max_prompt_length` | `30000` | Max prompt string length |
### Feature Flags
| Key | Default | Description |
|-----|---------|-------------|
| `add_tags` | `false` | Enable auto-tagging feature |
| `add_tags_maxnum` | `3` | Max tags to apply |
| `add_tags_hide_exclusions` | `false` | Hide excluded tags from menu |
| `add_tags_exclusions_exact_match` | `false` | Exact match for exclusions |
| `add_tags_first_uppercase` | `true` | Capitalize first letter of tags |
| `add_tags_force_lang` | `true` | Force language for tags |
| `add_tags_auto` | `false` | Auto-tag on message open |
| `add_tags_auto_force_existing` | `false` | Only use existing tags |
| `add_tags_auto_only_inbox` | `true` | Auto-tag only inbox messages |
| `add_tags_auto_uselist` | `false` | Use tag allow-list |
| `add_tags_auto_uselist_list` | `''` | Tag allow-list content |
| `add_tags_enabled_accounts` | `[]` | Accounts where auto-tag is active |
| `get_calendar_event` | `true` | Enable calendar event extraction |
| `get_calendar_event_from_clipboard` | `false` | Enable calendar from clipboard |
| `get_task` | `true` | Enable task creation |
| `calendar_enforce_timezone` | `false` | Force specific timezone |
| `calendar_timezone` | `''` | Timezone to enforce |
| `calendar_no_selection` | `false` | Skip selection prompt |
| `spamfilter` | `false` | Enable spam filter |
| `spamfilter_threshold` | `70` | Spam confidence threshold (%) |
| `spamfilter_enabled_accounts` | `[]` | Accounts where spam filter is active |
| `spamfilter_show_msg_panel` | `true` | Show info panel on spam detection |
| `summarize` | `false` | Enable email summarization |
| `summarize_auto` | `1` | Auto-summarize mode: `0` = disabled, `1` = manual (show "click to generate" button), `2` = automatic (generate on message open), `3` = generate on email receive (background pre-cache via `onNewMailReceived`, no UI during generation) |
| `summarize_display_mode` | `'inline'` | Where to display summaries: `'inline'` = message pane banner, `'webchat'` = AI chat window. Note: `summarize_auto = 2` and `summarize_auto = 3` always use inline regardless of this setting. |
| `summarize_max_display_length` | `0` | Maximum characters shown in inline summary before truncation. `0` = no limit (show full text). When set, text is truncated at a word boundary and a "See more"/"See less" toggle link is shown. |
| `summarize_strip_formatting` | `false` | Strip HTML and Markdown formatting from AI-generated summaries, showing plain text only. |
| `translate` | `true` | Enable email translation |
| `translate_auto` | `0` | Auto-translate mode: `0` = disabled, `1` = manual (show button), `2` = automatic (translate on message open), `3` = generate on email receive (background pre-cache via `onNewMailReceived`, no UI during generation) |
| `translate_max_display_length` | `0` | Maximum characters shown in inline translation before truncation. `0` = no limit (show full text). When set, text is truncated at a word boundary and a "See more"/"See less" toggle link is shown. |
| `translate_lang` | `''` | Target language for translation. Falls back to `default_chatgpt_lang` if empty. |
### Summarize Settings Page (`pages/summarize/`)
The summarize settings page provides:
1. **Specific integration checkbox** — enables per-feature API override (like other special prompts)
2. **Auto-summarize dropdown** (`summarize_auto`) — three modes:
- `0` (Disabled) — no inline summaries
- `1` (Manual) — shows a "Click to generate summary" button in message display
- `2` (Automatic) — generates summary immediately when message is opened
3. **Display mode dropdown** (`summarize_display_mode`) — controls where summaries are shown:
- `'inline'` — summary banner in the message pane (default)
- `'webchat'` — opens the AI chat window
- Note: `summarize_auto = 2` always generates inline regardless of this setting. Context menu summarize with multiple messages always falls back to webchat.
4. **Max display length** (`summarize_max_display_length`) — number input, limits inline summary text to N characters. `0` = no limit. When truncated, a "See more"/"See less" toggle link is appended.
5. **Strip formatting** (`summarize_strip_formatting`) — checkbox, removes HTML/Markdown formatting from AI summary responses, displaying plain text only. Default: off.
6. **Three editable prompts** (used by context menu summarize and webchat mode):
- Summarize instruction prompt (`prompt_summarize`)
- Email template prompt (`prompt_summarize_email_template`)
- Email separator prompt (`prompt_summarize_email_separator`)
- Each has Save/Reset buttons and placeholder autocomplete
- Default text comes from i18n strings (`prompt_summarize_full_text`, etc.)
### Menu Order Page (`pages/menu_order/`)
Entry point from the options page via the "Menu Order" button (next to "Manage your prompts"). Provides drag-and-drop reordering and toggle-based visibility control for both the popup and the context menu. See `claude-spec/02-prompts.md` ("Menu Order Page") for the full behaviour, data flow, and exclusion rules.
### Translate Settings Page (`pages/translate/`)
The translate settings page provides:
1. **Specific integration checkbox** — enables per-feature API override (like other special prompts)
2. **Auto-translate dropdown** (`translate_auto`) — three modes:
- `0` (Disabled) — no inline translations
- `1` (Manual) — shows a "Get AI Translation" button in message display
- `2` (Automatic) — generates translation immediately when message is opened
3. **Max display length** (`translate_max_display_length`) — number input, limits inline translation text to N characters. `0` = no limit. When truncated, a "See more"/"See less" toggle link is appended.
4. **Target language** (`translate_lang`) — text input for the destination language. If empty, falls back to `default_chatgpt_lang`.
5. **One editable prompt** — the translation instruction prompt (`prompt_translate_this`) with Save/Reset buttons and placeholder autocomplete. Default text comes from i18n string `prompt_translate_this_full_text`.
## Adding a New Preference
1. Add the key and default value to `prefs_default` in `options/mzta-options-default.js`
2. Add UI control to `options/mzta-options.html`
3. Add load/save logic to `options/mzta-options.js`
4. Add i18n label to `_locales/en/messages.json`
5. Read the pref in the relevant module via `browser.storage.local.get()`
## Reading Preferences at Runtime
```javascript
const prefs = await browser.storage.local.get(prefs_default);
// prefs now contains all keys with defaults for any unset values
const myPref = prefs.my_new_pref;
```

View file

@ -1,91 +0,0 @@
# Localization
## Golden Rule
**Only ever modify `_locales/en/messages.json`.**
All other locale files (`de`, `fr`, `it`, `es`, `zh_Hans`, `zh_Hant`, `pl`, `ru`, `pt-br`, `sv`, `el`, `cs`, `hr`, `ja`, `nb_NO`) are managed by translators through [Weblate](https://hosted.weblate.org/). Never edit them manually.
## Message File Format
Each entry in `_locales/en/messages.json` follows the standard WebExtension i18n format:
```json
"key_name": {
"message": "The English text",
"description": "Context for translators explaining where/how this string is used"
}
```
The `description` field is important — it helps Weblate translators understand the context.
## Using Strings in Code
### In JavaScript
```javascript
import { i18n } from './mzta-i18n.js';
const text = i18n('key_name');
// or directly:
const text = browser.i18n.getMessage('key_name');
```
### In HTML
```html
<span data-i18n="key_name"></span>
<!-- or via manifest/attribute references: -->
__MSG_key_name__
```
### In manifest.json
```json
"description": "__MSG_extensionDescription__"
```
## Naming Conventions
| Prefix | Usage |
|--------|-------|
| `menu_*` | Context menu and popup menu labels |
| `prompt_*` | Built-in prompt names |
| `placeholder_*` | Placeholder display names |
| `options_*` | Settings page labels |
| `pages_*` | Feature page labels |
| `error_*` | Error messages |
| `info_*` | Informational messages |
| `btn_*` | Button labels |
## Adding a New String
1. Open `_locales/en/messages.json`
2. Add the new key in alphabetical order within the file (or near related keys)
3. Include both `message` and `description` fields
4. Use the string in code via `browser.i18n.getMessage('key_name')` or `__MSG_key_name__`
Example:
```json
"my_new_feature_label": {
"message": "My New Feature",
"description": "Label for the new feature button in the options page"
}
```
## Supported Languages (16)
| Code | Language |
|------|----------|
| `en` | English (source) |
| `de` | German |
| `es` | Spanish |
| `fr` | French |
| `it` | Italian |
| `pl` | Polish |
| `ru` | Russian |
| `pt-br` | Brazilian Portuguese |
| `sv` | Swedish |
| `el` | Greek |
| `cs` | Czech |
| `hr` | Croatian |
| `ja` | Japanese |
| `nb_NO` | Norwegian Bokmål |
| `zh_Hans` | Chinese Simplified |
| `zh_Hant` | Chinese Traditional |

View file

@ -1,398 +0,0 @@
# Thunderbird WebExtensions Development Guidelines
> **Purpose:** This file provides operative guidelines for Claude when helping develop or modify ThunderAI. These rules override general AI assistant behavior and must be followed strictly.
## ThunderAI-Specific Context
- ThunderAI uses **Manifest Version 2** — do not suggest or apply any MV3 migration.
- No build tools, no transpilation, no npm — plain ES6 modules loaded directly.
- The manifest already uses `browser_specific_settings` (not `applications`).
- All module imports use relative paths with `.js` extension.
- The `mzta-` prefix is used for all core module filenames.
---
## Important Guidelines for AI Assistants
### 1. Always use `browser_specific_settings` in manifest.json
The `applications` manifest entry is deprecated. Always use `browser_specific_settings`:
```json
{
"manifest_version": 2,
"name": "ThunderAI",
"browser_specific_settings": {
"gecko": {
"id": "thunderai@micz.it",
"strict_min_version": "140.0"
}
}
}
```
### 2. Do not guess APIs by using Try-Catch
A widespread antipattern in AI-generated Thunderbird extensions:
```javascript
// WRONG - Never do this!
try {
await browser.someApi.method({ guessedParam: value });
} catch (e) {
try {
await browser.someApi.method({ differentGuess: value });
} catch (e2) {
// Giving up silently — this makes debugging impossible
}
}
```
**Why this is harmful:**
- Makes code unmaintainable
- Hides real errors from developers
- Makes debugging extremely difficult
**The correct approach:**
1. Read the API documentation FIRST
2. Use the exact parameter names and types specified
3. Only use try-catch for expected error conditions with proper handling
4. Never suppress errors without logging or handling them
### 3. Do not use Experiments unnecessarily
```javascript
// WRONG - Using Experiment when standard API exists
// Don't use Experiment just because you found example code using it
// RIGHT - Check if standard API can do it first
const folders = await browser.folders.query({ name: "Inbox" });
```
### 4. Handle file storage correctly
```javascript
// WRONG - Trying to use raw filesystem APIs
const fs = require('fs'); // Not available!
// RIGHT - Use storage.local with File objects
const file = new File([content], "data.txt", { type: "text/plain" });
await browser.storage.local.set({ file });
```
### 5. Do not use async listeners for the runtime.onMessage listener
See https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/runtime/onMessage
### 6. Parse vCard, vTodo, vEvent and iCal strings using a 3rd party library
Follow https://webextension-api.thunderbird.net/en/mv2/guides/vcard.html to parse vCard, vEvent and vTodo strings.
### 7. Parse Mailbox Strings using messengerUtilities
Extract email addresses from mailbox strings like "John Doe <john@example.com>":
```javascript
const parsed = await browser.messengerUtilities.parseMailboxString(
"John Doe <john@example.com>, Jane <jane@example.com>"
);
// Result:
// [
// { name: "John Doe", email: "john@example.com" },
// { name: "Jane", email: "jane@example.com" }
// ]
// Extract just emails:
const emails = parsed.map(p => p.email);
```
**Documentation:** https://webextension-api.thunderbird.net/en/mv2/messengerUtilities.html
**Options:**
- `preserveGroups`: Keep grouped hierarchies
- `expandMailingLists`: Expand Thunderbird mailing lists (requires `addressBook` permission)
### 8. Set correct `strict_min_version` entry
Make sure `manifest.json` has a `strict_min_version` entry matching the used functions. If a function added in Thunderbird 137 is used, it must be set to `137.0` or higher.
### 9. Always use background type "module"
Always use `type: "module"` for background scripts. This allows use of the `import` directive for ES6 modules, and non-ES6 libraries can still be loaded via the `scripts` array:
```json
// RIGHT - Always use type: "module"
"background": {
"scripts": ["lib/some-non-ES6-lib.js", "background.js"],
"type": "module"
}
```
Then in `background.js`, import libraries explicitly:
```javascript
// Import ES6 module with default export
import ICAL from "./lib/ical.js";
// Import ES6 module with named exports
import { someFunction, someConstant } from "./lib/somemodule.js";
```
### 10. Verify API return types — do not assume array access
Many Thunderbird APIs return wrapped objects, not direct arrays. Always verify the return type in the documentation before accessing the data.
**Common pitfall — MessageList:**
```javascript
// WRONG - getDisplayedMessages() returns MessageList, not an array
const [message] = await browser.messageDisplay.getDisplayedMessages(tabId);
// RIGHT - MessageList has a .messages array property
const { messages: [message] } = await browser.messageDisplay.getDisplayedMessages(tabId);
```
**Common pitfall — HeadersDictionary:**
```javascript
// WRONG - headers might not exist or might not be an array
let returnPath = headers["Return-Path"];
// RIGHT - keys are lowercase, values are always arrays
const returnPathArray = headers["return-path"];
const returnPath = returnPathArray?.[0] ?? null;
```
**APIs that return wrapped objects (NOT direct arrays):**
| API | Returns | Access Pattern |
|-----|---------|----------------|
| `messageDisplay.getDisplayedMessages()` | `MessageList` | `result.messages[0]` |
| `messages.list()` | `MessageList` | `result.messages[0]` |
| `messages.query()` | `MessageList` | `result.messages[0]` |
| `messages.getHeaders()` | `HeadersDictionary` | `result["header-name"][0]` |
| `messages.getFull()` | `MessagePart` | `result.headers["header-name"][0]` |
**APIs that return direct arrays:**
| API | Returns | Access Pattern |
|-----|---------|----------------|
| `tabs.query()` | array of Tab | `result[0]` |
| `mailTabs.query()` | array of MailTab | `result[0]` |
| `addressBooks.list()` | array of AddressBookNode | `result[0]` |
| `contacts.list()` | array of ContactNode | `result[0]` |
| `folders.query()` | array of MailFolder | `result[0]` |
---
## Official API Documentation
**Primary resource:** https://webextension-api.thunderbird.net/en/mv2/
Documentation exists for different channels:
- **Release (mv2):** https://webextension-api.thunderbird.net/en/mv2/
- **ESR (esr-mv2):** https://webextension-api.thunderbird.net/en/esr-mv2/
**Key feature:** Search functionality and cross-references between types and functions.
---
## Understanding Thunderbird Release Channels
### Standard Release Channel (Monthly)
- Update cadence: ~4 weeks
- A new major version with each release (`147.0`, `148.0`, ...)
- Gets new features and APIs (and bug fixes & security fixes)
### ESR Channel (Extended Support Release)
- Update cadence: 1 major update per year, with lots of versions "missing" in between (`115.*`, `128.*`, `140.*`, `153.*`, ...)
- Receives bug fixes & security fixes on regular basis alongside the major monthly releases, but as minor releases (`140.1`, `140.2`, ...)
- No new features or APIs
### For ThunderAI
- Target the Release channel for standard API usage.
- Target the ESR channel for add-ons relying on Experiment APIs. Targeting the Release channel with Experiments is acceptable *only* when the developer can guarantee required monthly updates.
---
## Experiment APIs
### What Are Experiment APIs?
Experiment APIs allow add-ons to access Thunderbird's core internals directly. They have full access to modify everything in Thunderbird.
### Critical Rules for Experiments
**1. Avoid Experiments Unless Absolutely Necessary**
- Standard WebExtension APIs should always be your first choice
- Only use Experiments when standard APIs genuinely cannot accomplish your goal
**2. Experiments Require Updates for Each Major Version**
- This was manageable with ESR (1x/year)
- Became unsustainable with monthly Release channel (12x/year)
**3. When Suggesting Experiments**
- Only if standard APIs cannot accomplish the core goal
- Developer must explicitly understand the maintenance burden
- **Target ESR channel specifically**
- Reference `esr-mv2` documentation
### Available semi-official Experiment APIs
#### Calendar Experiment API
Use this instead of creating a custom Experiment for calendar interactions.
**Use cases:**
- Reading existing event/task items from Thunderbird's calendar
- Listening for item updates
- Creating/updating/deleting items
**Setup requirements:**
1. Temporarily clone the [webext-experiments](https://github.com/thunderbird/webext-experiments/) repository.
2. Add all `experiment_apis` entries found in `calendar/manifest.json` to the project's `manifest.json`.
3. Copy `calendar/experiments/calendar/` into the project as `experiments/calendar/`. Do not modify these files.
**Note:** Always request iCal format:
```javascript
// Always consult schema first, if this example is still correct
browser.calendar.items.onCreated.addListener(
async (calendarItem) => {
if (calendarItem.type === "task") {
console.log("Task in iCal format:", calendarItem.item);
}
},
{ returnFormat: "ical" }
);
```
### Other Experiment Repositories
- https://github.com/thunderbird/webext-support — Helper APIs and modules
- https://github.com/thunderbird/webext-examples — Example extensions (includes some Experiments)
---
## Native File System Access
### Current Limitations
Native filesystem access is NOT available in Thunderbird WebExtensions.
### Recommended Approach
**For data persistence:**
```javascript
await browser.storage.local.set({ myData: someValue });
const data = await browser.storage.local.get("myData");
```
**For user file input:**
```javascript
const file = new File([content], "filename.txt", { type: "text/plain" });
await browser.storage.local.set({ file });
// Retrieve later
const data = await browser.storage.local.get("file");
console.log(data.file.name);
```
**Important:** File objects can be stored directly in `browser.storage.local` without serialization.
---
## Add-on Review Requirements
**Review policy:** https://thunderbird.github.io/atn-review-policy/
### Key Requirements
**1. No Build Tools**
- Include 3rd party libraries directly (don't use webpack, rollup, etc.)
- Include a `VENDOR.md` file documenting all 3rd party libraries with links to exact versions (not "latest"). Example: https://webextension-api.thunderbird.net/en/mv2/guides/vcard.html
**2. Permissions**
- Only request permissions you actually need
- The `tabs` and `activeTab` permissions are almost never needed in Thunderbird
- Unnecessary permissions may cause rejection during ATN review
---
## Example Repositories
- https://github.com/thunderbird/webext-examples — Official example extensions
- https://github.com/thunderbird/webext-support — Support libraries and helpers
Use these to see proper code structure, learn common patterns, and understand best practices.
---
## Mandatory Checklist Before Providing Code
Before providing any code, verify ALL of these:
- [ ] Consulted official API documentation — do NOT guess methods or parameters
- [ ] NO try-catch blocks for guessing API parameters
- [ ] Used 3rd party libraries or API methods for parsing — minimize manual string parsing or regex
- [ ] Used 3rd party libraries are the most recent stable version
- [ ] Event listeners registered at file scope (NOT inside init function)
- [ ] VENDOR.md includes ALL dependencies with exact version URLs
- [ ] Used `browser_specific_settings` (NOT deprecated `applications`)
- [ ] Included proper error handling
- [ ] Code has comments explaining the approach
- [ ] No hardcoded user-facing strings — use the i18n API (`_locales/en/messages.json` only)
- [ ] Add-on fulfills all requirements in the "Add-on Review Requirements" section
- [ ] All guidelines in "Important Guidelines for AI Assistants" are followed
- [ ] Manifest uses correct `strict_min_version`
- [ ] If using Experiments: manifest has `strict_max_version` targeting current ESR (fetch https://webextension-api.thunderbird.net/en/esr-mv2/ to get the major version, then use format `"<major>.*"`)
If ANY checkbox is unchecked, DO NOT provide the code. Fix it first.
---
## Mandatory 3rd Party Library Audit
For EACH 3rd party library included in the project:
- [ ] Inspect the actual file to determine the export type:
- **ES6 default export:** Look for `export default` → use `import LibName from "./lib/file.js"`
- **ES6 named exports:** Look for `export { name1, name2 }` → use `import { name1, name2 } from "./lib/file.js"`
- **UMD/IIFE (no ES6 exports):** Look for `(function(root, factory)` or assignments to `window`/`globalThis` → load via `scripts` array in manifest
- [ ] Always prefer the minified module version
- [ ] Output a library audit table:
| Library | File | Module Type | Import Statement |
|---------|------|-------------|------------------|
| ical.js | lib/ical.js | ES6 default | `import ICAL from "./lib/ical.js"` |
- [ ] Update VENDOR.md with the correct file path and version URL
---
## Mandatory API Audit
Before finalizing any code:
- [ ] List all used API methods
- [ ] For EACH API method, fetch its documentation page: `https://webextension-api.thunderbird.net/en/mv2/<api-name>.html`
- [ ] For EACH API method, verify:
- **Parameters:** Correct names and types
- **Return type:** The actual type returned by the Promise
- **Access pattern:** How to extract data from the return value
- **Required permission:** What permission is needed in manifest.json
- [ ] Output an API audit table:
| API Method | Returns | Access Pattern | Required Permission |
|------------|---------|----------------|---------------------|
| `browser.messageDisplay.getDisplayedMessages()` | MessageList | `result.messages[0]` | messagesRead |
| `browser.messages.getHeaders()` | HeadersDictionary | `result["header-name"][0]` | messagesRead |
| `browser.mailTabs.query()` | array of MailTab | `result[0]` | (none) |
| `browser.storage.local.get` | object | `result.keyName` | storage |
| `browser.i18n.getMessage` | string | direct | (none) |
- [ ] Update the permissions entry in manifest.json to include ALL required permissions
---
## Getting Help
- **Developer documentation:** https://developer.thunderbird.net/
- **Support forum:** https://thunderbird.topicbox.com/groups/addons
- **Matrix chat:** #tb-addon-developers:mozilla.org

Binary file not shown.

Before

Width:  |  Height:  |  Size: 306 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 740 B

View file

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 994 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 974 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 971 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 954 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 705 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 793 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 733 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 677 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 664 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 838 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 925 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 604 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 795 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 990 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

View file

Before

Width:  |  Height:  |  Size: 1.7 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 616 B

View file

@ -1,6 +1,6 @@
/*
* ThunderAI [https://micz.it/thunderbird-addon-thunderai/]
* Copyright (C) 2024 - 2026 Mic (m@micz.it)
* Copyright (C) 2024 - 2025 Mic (m@micz.it)
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -24,29 +24,20 @@ export class Anthropic {
apiKey = '';
version = '';
model = '';
system_prompt = '';
temperature = '';
max_tokens = 4096;
extended_thinking_budget = 0;
max_tokens = 4096;
stream = false;
constructor({
apiKey = '',
version = '',
model = '',
system_prompt = '',
temperature = '',
max_tokens = 4096,
extended_thinking_budget = 0,
stream = false,
} = {}) {
this.apiKey = apiKey;
this.version = version;
this.model = model;
this.system_prompt = system_prompt;
this.temperature = temperature;
this.max_tokens = max_tokens > 0 ? max_tokens : 4096;
this.extended_thinking_budget = extended_thinking_budget;
this.stream = stream;
}
@ -64,7 +55,7 @@ export class Anthropic {
if (!response.ok) {
const errorDetail = await response.text();
let err_msg = "[ThunderAI] Claude API request failed: " + response.status + " " + response.statusText + ", Detail: " + errorDetail;
let err_msg = "[ThunderAI] Anthropic API request failed: " + response.status + " " + response.statusText + ", Detail: " + errorDetail;
console.error(err_msg);
let output = {};
output.ok = false;
@ -79,39 +70,20 @@ export class Anthropic {
return output;
}catch (error) {
console.error("[ThunderAI] Claude API request failed: " + error);
console.error("[ThunderAI] Anthropic API request failed: " + error);
let output = {};
output.is_exception = true;
output.ok = false;
output.error = "Claude API request failed: " + error;
output.error = "Anthropic API request failed: " + error;
return output;
}
}
fetchResponse = async (messages) => {
// console.log(">>>>>>>>>>> Anthropic API request: " + JSON.stringify(messages));
try {
let claude_body = {
model: this.model,
max_tokens: parseInt(this.max_tokens),
system: this.system_prompt,
messages: messages,
stream: this.stream,
};
const thinkingBudget = parseInt(this.extended_thinking_budget);
const thinkingEnabled = !Number.isNaN(thinkingBudget) && thinkingBudget > 0;
if (thinkingEnabled) {
claude_body.thinking = { type: 'enabled', budget_tokens: thinkingBudget };
} else {
const tempFloat = parseFloat(this.temperature);
if(this.temperature != '' && !Number.isNaN(tempFloat)) claude_body.temperature = tempFloat;
}
// console.log(">>>>>>>>>>>>>>>>> [ThunderAI] Anthropic API request: " + JSON.stringify(claude_body));
const response = await fetch("https://api.anthropic.com/v1/messages", {
method: "POST",
headers: {
@ -120,15 +92,20 @@ export class Anthropic {
"anthropic-version": this.version,
"anthropic-dangerous-direct-browser-access": "true",
},
body: JSON.stringify(claude_body),
body: JSON.stringify({
model: this.model,
max_tokens: this.max_tokens,
messages: messages,
stream: this.stream,
}),
});
return response;
}catch (error) {
console.error("[ThunderAI] Claude API request failed: " + error);
console.error("[ThunderAI] Anthropic API request failed: " + error);
let output = {};
output.is_exception = true;
output.ok = false;
output.error = "Claude API request failed: " + error;
output.error = "Anthropic API request failed: " + error;
return output;
}
}

View file

@ -1,6 +1,6 @@
/*
* ThunderAI [https://micz.it/thunderbird-addon-thunderai/]
* Copyright (C) 2024 - 2026 Mic (m@micz.it)
* Copyright (C) 2024 - 2025 Mic (m@micz.it)
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -25,7 +25,6 @@ export class GoogleGemini {
system_instruction = '';
stream = false;
thinking_budget = ''; // Model default
temperature = ''; // no temperature defined
constructor({
apiKey = '',
@ -33,14 +32,12 @@ export class GoogleGemini {
system_instruction = '',
stream = false,
thinking_budget = '',
temperature = '',
} = {}) {
this.apiKey = apiKey;
this.model = model;
this.system_instruction = system_instruction;
this.stream = stream;
this.thinking_budget = String(thinking_budget ?? '').trim();
this.temperature = String(temperature ?? '').trim();
/* Info from: https://ai.google.dev/gemini-api/docs/thinking?#set-budget
# Turn on thinking with a specific token limit: "thinking_budget": 1024
# Thinking off: "thinking_budget": 0
@ -90,8 +87,7 @@ export class GoogleGemini {
try {
let google_gemini_body = {
contents: messages,
generationConfig: {},
contents:messages
};
// console.log("[ThunderAI] Google Gemini API system_instruction: " + JSON.stringify(this.system_instruction));
@ -105,18 +101,14 @@ export class GoogleGemini {
}
if(this.thinking_budget !== '') {
google_gemini_body.generationConfig.thinkingConfig = {
google_gemini_body.generationConfig = {
thinkingConfig: {
thinking_budget: this.thinking_budget,
}
};
}
const tempFloat = parseFloat(this.temperature);
if(this.temperature != '' && !Number.isNaN(tempFloat)) {
google_gemini_body.generationConfig.temperature = tempFloat;
}
// console.log(">>>>>>>>>>>>>>>>> [ThunderAI] Google Gemini API request: " + JSON.stringify(google_gemini_body));
// console.log("[ThunderAI] Google Gemini API request: " + JSON.stringify(google_gemini_body));
const response = await fetch("https://generativelanguage.googleapis.com/v1beta/models/" + this.model + ":" + (this.stream ? 'streamGenerateContent?alt=sse&' : 'generateContent?') + "key=" + this.apiKey, {
method: "POST",

View file

@ -1,6 +1,6 @@
/*
* ThunderAI [https://micz.it/thunderbird-addon-thunderai/]
* Copyright (C) 2024 - 2026 Mic (m@micz.it)
* Copyright (C) 2024 - 2025 Mic (m@micz.it)
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -22,26 +22,20 @@ export class Ollama {
model = '';
stream = false;
num_ctx = 0;
temperature = '';
think = false;
format_json = false;
constructor({
host = '',
model = '',
stream = false,
num_ctx = 0,
temperature = '',
think = false,
format_json = false,
} = {}) {
this.host = (host || '').trim().replace(/\/+$/, "");
this.model = model;
this.stream = stream;
this.num_ctx = num_ctx;
this.temperature = temperature;
this.think = think;
this.format_json = format_json;
}
fetchModels = async () => {
@ -84,7 +78,6 @@ export class Ollama {
fetchResponse = async (messages) => {
try {
const tempFloat = parseFloat(this.temperature);
//console.log(">>>>>>>>>> messages: " +JSON.stringify(messages));
const response = await fetch(this.host + "/api/chat", {
method: "POST",
@ -96,9 +89,7 @@ export class Ollama {
messages: messages,
stream: this.stream,
think: this.think,
...(this.format_json ? { format: "json" } : {}),
...(this.num_ctx > 0 ? { options: { num_ctx: parseInt(this.num_ctx) } } : {}),
...(this.temperature != '' && !Number.isNaN(tempFloat) ? { options: { temperature: tempFloat } } : {}),
}),
});
return response;
@ -112,4 +103,30 @@ export class Ollama {
}
}
// fetchResponse = async (messages) => {
// try {
// let sending = messages.join(' ');
// console.log(">>>>>>>>>> sending: " + sending);
// const response = await fetch(this.host + "/api/generate", {
// method: "POST",
// headers: {
// "Content-Type": "application/json",
// },
// body: JSON.stringify({
// model: this.model,
// prompt: sending,
// stream: this.stream,
// }),
// });
// return response;
// }catch (error) {
// console.error("[ThunderAI] Ollama API request failed: " + error);
// let output = {};
// output.is_exception = true;
// output.ok = false;
// output.error = "Ollama API request failed: " + error;
// return output;
// }
// }
}

Some files were not shown because too many files have changed in this diff Show more