diff --git a/.github/scripts/checkTranslation.py b/.github/scripts/checkTranslation.py new file mode 100644 index 0000000..346a9ef --- /dev/null +++ b/.github/scripts/checkTranslation.py @@ -0,0 +1,147 @@ +# Copyright (C) 2026 NV Access Limited, Abdel +# This file is covered by the GNU General Public License. +# See the file COPYING for more details. + +import sys +import os +from crowdin_api import CrowdinClient + + +def findFileId(client: CrowdinClient, projectId: int, baseTarget: str, searchExt: str) -> int | None: + """ + Iterates through all project files (using pagination) to find the ID of the source file matching the target name and extension. + + :param client: The Crowdin API client instance. + :param projectId: The ID of the Crowdin project. + :param base_target: The base name of the file (e.g., 'myAddon). + :param search_ext: The extension to look for (e.g., '.pot'). + :return: The file ID if found, otherwise None. + """ + offset = 0 + limit = 100 + + while True: + resp = client.source_files.list_files( + projectId=projectId, + limit=limit, + offset=offset, + ) + + data = resp["data"] + for f in data: + path_crowdin = f["data"]["path"].lower() + # Check if the path ends with addon_id.pot or addon_id.xliff. + if path_crowdin.endswith(f"{baseTarget}{searchExt}"): + fileId = f["data"]["id"] + print(f"DEBUG: Match found: {path_crowdin} (ID: {fileId})") + return fileId + + if len(data) < limit: + break + + offset += limit + + return None + + +def getScoreFromApi(fileNameToSearch: str, langId: str) -> float: + """ + Retrieves the translation progress score for a specific language and file. + Handles pagination for both file listing and language status. + + :param fileNameToSearch: The local path or name of the file to check. + :param langId: The language code (e.g., 'fr' or 'pt_BR'). + :return: The translation ratio between 0.0 and 1.0. + """ + token = os.environ.get("crowdinAuthToken") + projectIdEnv = os.environ.get("CROWDIN_PROJECT_ID") + + if not token or not projectIdEnv: + print("ERROR: Missing environment variables 'crowdinAuthToken' or 'CROWDIN_PROJECT_ID'.") + return 0.0 + + client = CrowdinClient(token=token) + projectId = int(projectIdEnv) + + try: + # Clean and prepare search patterns. + # Example: 'addon/locale/fr/LC_MESSAGES/myAddon.po' -> base_target: 'myAddon'. + baseTarget = fileNameToSearch.replace("\\", "/").split("/")[-1].rsplit(".", 1)[0].lower() + extTarget = fileNameToSearch.split(".")[-1].lower() + + # On Crowdin, the source for a .po file is usually a .pot file. + searchExt = ".pot" if extTarget == "po" else f".{extTarget}" + + print(f"DEBUG: Searching for source file: {baseTarget}{searchExt}") + + fileId = findFileId(client, projectId, baseTarget, searchExt) + + if fileId is None: + print(f"WARNING: File '{baseTarget}{searchExt}' not found on Crowdin.") + return 0.0 + + # Pagination for translation status (Progress). + offset = 0 + limit = 100 + + while True: + resp = client.translation_status.get_file_progress( + projectId=projectId, + fileId=fileId, + limit=limit, + offset=offset, + ) + + data = resp["data"] + for item in data: + langApi = item["data"]["languageId"] + + # Flexible matching (e.g., 'fr' will match 'fr' or 'fr-FR' from API). + # Also handles underscore to dash conversion for Crowdin compatibility + if langApi.lower().startswith(langId.lower().replace("_", "-")): + progress = float(item["data"]["translationProgress"]) + return progress / 100 + + # Check pagination total. + total = resp["pagination"]["totalCount"] + if offset + limit >= total: + break + offset += limit + + print(f"DEBUG: Language '{langId}' not found in progress list for this file.") + return 0.0 + + except Exception as e: + print(f"API ERROR: {e}") + return 0.0 + + +def main(): + if len(sys.argv) < 3: + print("Usage: python checkTranslation.py ") + sys.exit(2) + + input_file = sys.argv[1] + lang = sys.argv[2] + + score = getScoreFromApi(input_file, lang) + + # Output formatted for capture by the PowerShell script. + print(f"translationRatio={score}") + + # Identify extension to provide a specific score label. + ext = input_file.lower().split(".")[-1] + if ext == "md": + print(f"mdScore={score}") + elif ext == "xliff": + print(f"xliffScore={score}") + else: + # Default to poScore for .po and other localization files. + print(f"poScore={score}") + + # Exit with success (0) if there is at least 50% translated content. + sys.exit(0 if score > 0.5 else 1) + + +if __name__ == "__main__": + main() diff --git a/.github/scripts/crowdinSync.ps1 b/.github/scripts/crowdinSync.ps1 new file mode 100644 index 0000000..9628dd9 --- /dev/null +++ b/.github/scripts/crowdinSync.ps1 @@ -0,0 +1,180 @@ +#!/usr/bin/env pwsh +$ErrorActionPreference = 'Stop' + +# Git configuration for automated commits +git config user.name "github-actions[bot]" +git config user.email "github-actions[bot]@users.noreply.github.com" + +$rawAddonId = $env:ADDON_ID +if ([string]::IsNullOrWhiteSpace($rawAddonId)) { + Write-Error "Failed to get addon ID." + exit 1 +} +$addonId = $rawAddonId.Trim() + +# --- STEP 1: PREPARATION AND SOURCE UPDATE --- + +$xliffFile = "./$addonId.xliff" +$mdFile = "./readme.md" + +if (Test-Path $mdFile) { + if (Test-Path $xliffFile) { + $tempXliff = [System.IO.Path]::GetTempFileName() + try { + Copy-Item "$addonId.xliff" $tempXliff -Force + Write-Host "DEBUG: Updating XLIFF source based on readme.md..." + uv run .github/scripts/markdownTranslate.py updateXliff -m $mdFile -x $tempXliff -o $xliffFile + } finally { + if (Test-Path $tempXliff) { + Remove-Item $tempXliff -Force + } + } + } else { + Write-Host "DEBUG: XLIFF template not found. Creating new one from readme.md..." + uv run .github/scripts/markdownTranslate.py generateXliff -m $mdFile -o $xliffFile + } +} + +# Update POT file (addon interface) +uv run scons pot +$potFile = "$addonId.pot" + +# --- STEP 2: UPLOAD SOURCES TO CROWDIN --- + +if (Test-Path $potFile) { + Write-Host "DEBUG: Uploading updated POT source to Crowdin..." + ./l10nUtil.exe uploadSourceFile "$potFile" -c $env:L10N_UTIL_CONFIG +} + +if (Test-Path $xliffFile) { + Write-Host "DEBUG: Uploading updated XLIFF source to Crowdin..." + ./l10nUtil.exe uploadSourceFile "$xliffFile" -c $env:L10N_UTIL_CONFIG + git add "$xliffFile" + git diff --staged --quiet + if ($LASTEXITCODE -ne 0) { + git commit -m "Update $xliffFile for $addonId" + git push + } +} + +# --- STEP 3: EXPORT AND PROCESS TRANSLATIONS --- + +Write-Host "DEBUG: Exporting translations from Crowdin..." +./l10nUtil.exe exportTranslations -o _addonL10n -c $env:L10N_UTIL_CONFIG + +# Ensure base directories exist +New-Item -ItemType Directory -Force -Path addon/locale | Out-Null +New-Item -ItemType Directory -Force -Path addon/doc | Out-Null + +# Load language mappings for Crowdin API calls +$languageMappings = Get-Content -Raw ".github/scripts/languageMappings.json" | ConvertFrom-Json + +foreach ($dir in Get-ChildItem -Path "_addonL10n/$addonId" -Directory) { + $langCode = $dir.Name + + if ($langCode -eq "en") { continue } + + # --- Identify codes + $crowdinLang = $null + + # Use the ."variable" syntax to correctly read the PSCustomObject from JSON + if ($languageMappings.PSObject.Properties.Name -contains $langCode) { + $crowdinLang = $languageMappings."$langCode" + } + + # Fallback: If no mapping is found, replace underscores with dashes for Crowdin compatibility + if (-not $crowdinLang) { + $crowdinLang = $langCode.Replace('_', '-') + } + + # The $langCode (folder name from Crowdin) represents the local repository language code. + # It matches the NVDA directory structure, so no extra mapping is needed. + Write-Host "--- Processing Language: $langCode (Crowdin: $crowdinLang) ---" -ForegroundColor Cyan + + # Paths + $remoteMd = Join-Path $dir.FullName "$addonId.md" + $remoteXliff = Join-Path $dir.FullName "$addonId.xliff" + $remotePo = Join-Path $dir.FullName "$addonId.po" + $localMdDir = "addon/doc/$langCode" + $localMd = "$localMdDir/readme.md" + $localPoPath = "addon/locale/$langCode/LC_MESSAGES/nvda.po" + + # --- 3.1 PO FILE PROCESSING --- + $poImported = $false + if (Test-Path $remotePo) { + Write-Host "DEBUG: Checking Remote PO progress for $crowdinLang..." + uv run python .github/scripts/checkTranslation.py "$addonId.po" $crowdinLang + if ($LASTEXITCODE -eq 0) { + Write-Host "SUCCESS: Remote PO is valid. Importing to $localPoPath" + New-Item -ItemType Directory -Force -Path (Split-Path $localPoPath) | Out-Null + Move-Item $remotePo $localPoPath -Force + $poImported = $true + } else { + Write-Host "WARNING: Remote PO progress is below threshold." + } + } + + if (-not $poImported -and (Test-Path $localPoPath)) { + Write-Host "ACTION: Uploading local legacy PO to Crowdin ($crowdinLang) as fallback." + ./l10nUtil.exe uploadTranslationFile $crowdinLang "$addonId.po" $localPoPath -c $env:L10N_UTIL_CONFIG + } + + # --- 3.2 DOCUMENTATION PROCESSING (MD & XLIFF) --- + $scoreMd = 0.0 + $scoreXliff = 0.0 + + if (Test-Path $remoteMd) { + Write-Host "DEBUG: Evaluating Remote Markdown score..." + $res = uv run python .github/scripts/checkTranslation.py "$addonId.md" $crowdinLang + $scoreMd = [double]($res | Select-String "mdScore=").ToString().Split("=")[1] + } else { + Write-Host "DEBUG: No remote Markdown file found for this language." + } + + if (Test-Path $remoteXliff) { + Write-Host "DEBUG: Evaluating Remote XLIFF score..." + $res = uv run python .github/scripts/checkTranslation.py "$addonId.xliff" $crowdinLang + $scoreXliff = [double]($res | Select-String "xliffScore=").ToString().Split("=")[1] + } else { + Write-Host "DEBUG: No remote XLIFF file found for this language." + } + + Write-Host "DEBUG: Comparison Scores -> MD: $scoreMd | XLIFF: $scoreXliff" + + $threshold = 0.5 + $docImported = $false + + if ($scoreXliff -gt $threshold -or $scoreMd -gt $threshold) { + if (!(Test-Path $localMdDir)) { New-Item -ItemType Directory -Force -Path $localMdDir | Out-Null } + + if ($scoreXliff -ge $scoreMd) { + Write-Host "SUCCESS: XLIFF is better or equal. Converting XLIFF to local MD ($langCode)..." + ./l10nUtil.exe xliff2md $remoteXliff $localMd + $docImported = $true + } else { + Write-Host "SUCCESS: Markdown is better. Importing Remote MD to local ($langCode)..." + Move-Item $remoteMd $localMd -Force + $docImported = $true + } + } else { + Write-Host "WARNING: Both remote MD and XLIFF scores are below threshold ($threshold)." + } + + if (-not $docImported -and (Test-Path $localMd)) { + Write-Host "ACTION: Documentation quality too low. Uploading local MD to Crowdin ($crowdinLang) as fallback." + ./l10nUtil.exe uploadTranslationFile $crowdinLang "$addonId.md" $localMd -c $env:L10N_UTIL_CONFIG + } +} + +# --- STEP 4: COMMIT UPDATED TRANSLATIONS --- + +git add addon/locale addon/doc +git diff --staged --quiet +if ($LASTEXITCODE -ne 0) { + git commit -m "Update translations for $addonId from Crowdin (Automatic Sync)" + $branch = $env:downloadTranslationsBranch + git push -f origin "HEAD:$branch" + Write-Host "SUCCESS: Translations committed and pushed." +} else { + Write-Host "DEBUG: No changes in translations to commit." +} diff --git a/.github/scripts/languageMappings.json b/.github/scripts/languageMappings.json new file mode 100644 index 0000000..cae6e13 --- /dev/null +++ b/.github/scripts/languageMappings.json @@ -0,0 +1,14 @@ +{ + "af_ZA": "af", + "de_CH": "de-CH", + "es": "es-ES", + "es_CO": "es-CO", + "nb_NO": "nb", + "nn_NO": "nn-NO", + "pt_PT": "pt-PT", + "pt_BR": "pt-BR", + "sr": "sr-CS", + "zh_CN": "zh-CN", + "zh_HK": "zh-HK", + "zh_TW": "zh-TW" +} diff --git a/.github/scripts/markdownTranslate.py b/.github/scripts/markdownTranslate.py new file mode 100644 index 0000000..165e940 --- /dev/null +++ b/.github/scripts/markdownTranslate.py @@ -0,0 +1,881 @@ +# A part of NonVisual Desktop Access (NVDA) +# Copyright (C) 2024-2026 NV Access Limited. +# This file is covered by the GNU General Public License. +# See the file COPYING for more details. + +from collections.abc import Generator +from collections.abc import Iterable +import tempfile +import os +import contextlib +import lxml.etree +import argparse +import uuid +import re +from itertools import zip_longest +from xml.sax.saxutils import escape as xmlEscape +import difflib +from dataclasses import dataclass +import subprocess + + +def getGithubRepoURL() -> str | None: + """ + Get the GitHub repository URL from git remote origin. + return: The raw GitHub URL for the repository, or None if it cannot be determined. + """ + result = subprocess.run( + ["git", "remote", "get-url", "origin"], + capture_output=True, + text=True, + check=True, + ) + remote_url = result.stdout.strip() + # Convert SSH or HTTPS URL to raw GitHub URL format + if match := re.match(r"git@github\.com:(.+?)(?:\.git)?$", remote_url): + repo_path = match.group(1) + elif match := re.match(r"https://github\.com/(.+?)(?:\.git)?$", remote_url): + repo_path = match.group(1) + else: + raise ValueError(f"Cannot parse GitHub URL from git remote: {remote_url}") + return f"https://raw.githubusercontent.com/{repo_path}" + + +re_kcTitle = re.compile(r"^()$") +re_kcSettingsSection = re.compile(r"^()$") +# Comments that span a single line in their entirety +re_comment = re.compile(r"^$") +re_heading = re.compile(r"^(#+\s+)(.+?)((?:\s+\{#.+\})?)$") +re_bullet = re.compile(r"^(\s*\*\s+)(.+)$") +re_number = re.compile(r"^(\s*[0-9]+\.\s+)(.+)$") +re_hiddenHeaderRow = re.compile(r"^\|\s*\.\s*\{\.hideHeaderRow\}\s*(\|\s*\.\s*)*\|$") +re_postTableHeaderLine = re.compile(r"^(\|\s*-+\s*)+\|$") +re_tableRow = re.compile(r"^(\|)(.+)(\|)$") +re_translationID = re.compile(r"^(.*)\$\(ID:([0-9a-f-]+)\)(.*)$") +re_inlineMarkdownLintComment = re.compile(r"^(.*?)(?:\s*)(\s*)$") + + +def prettyPathString(path: str) -> str: + cwd = os.getcwd() + if os.path.normcase(os.path.splitdrive(path)[0]) != os.path.normcase( + os.path.splitdrive(cwd)[0], + ): + return path + return os.path.relpath(path, cwd) + + +@contextlib.contextmanager +def createAndDeleteTempFilePath_contextManager( + dir: str | None = None, + prefix: str | None = None, + suffix: str | None = None, +) -> Generator[str, None, None]: + """A context manager that creates a temporary file and deletes it when the context is exited""" + with tempfile.NamedTemporaryFile( + dir=dir, + prefix=prefix, + suffix=suffix, + delete=False, + ) as tempFile: + tempFilePath = tempFile.name + tempFile.close() + yield tempFilePath + os.remove(tempFilePath) + + +def getLastCommitID(filePath: str) -> str: + # Run the git log command to get the last commit ID for the given file + result = subprocess.run( + ["git", "log", "-n", "1", "--pretty=format:%H", "--", filePath], + capture_output=True, + text=True, + check=True, + ) + commitID = result.stdout.strip() + if not re.match(r"[0-9a-f]{40}", commitID): + raise ValueError(f"Invalid commit ID: '{commitID}' for file '{filePath}'") + return commitID + + +def getGitDir() -> str: + # Run the git rev-parse command to get the root of the git directory + result = subprocess.run( + ["git", "rev-parse", "--show-toplevel"], + capture_output=True, + text=True, + check=True, + ) + gitDir = result.stdout.strip() + if not os.path.isdir(gitDir): + raise ValueError(f"Invalid git directory: '{gitDir}'") + return gitDir + + +def getRawGithubURLForPath(filePath: str) -> str: + gitDirPath = getGitDir() + commitID = getLastCommitID(filePath) + relativePath = os.path.relpath(os.path.abspath(filePath), gitDirPath) + relativePath = relativePath.replace("\\", "/") + rawGithubRepoUrl = getGithubRepoURL() + return f"{rawGithubRepoUrl}/{commitID}/{relativePath}" + + +def preprocessMarkdownLines(mdLines: Iterable[str]) -> Iterable[str]: + """ + Preprocess markdown lines such as removing inline markdown lint comments.\ + :param mdLines: The markdown lines to preprocess + :returns: The preprocessed markdown lines + """ + for mdLine in mdLines: + # #18982: Remove markdown lint comments completely - not needed for intermediate markdown or final html. + mdLine = re_inlineMarkdownLintComment.sub(r"\1\2", mdLine) + yield mdLine + + +def skeletonizeLine(mdLine: str) -> str | None: + prefix = "" + suffix = "" + if ( + mdLine.isspace() + or mdLine.strip() == "[TOC]" + or re_hiddenHeaderRow.match(mdLine) + or re_postTableHeaderLine.match(mdLine) + ): + return None + elif m := re_heading.match(mdLine): + prefix, content, suffix = m.groups() + elif m := re_bullet.match(mdLine): + prefix, content = m.groups() + elif m := re_number.match(mdLine): + prefix, content = m.groups() + elif m := re_tableRow.match(mdLine): + prefix, content, suffix = m.groups() + elif m := re_kcTitle.match(mdLine): + prefix, content, suffix = m.groups() + elif m := re_kcSettingsSection.match(mdLine): + prefix, content, suffix = m.groups() + elif re_comment.match(mdLine): + return None + ID = str(uuid.uuid4()) + return f"{prefix}$(ID:{ID}){suffix}\n" + + +@dataclass +class Result_generateSkeleton: + numTotalLines: int = 0 + numTranslationPlaceholders: int = 0 + + +def generateSkeleton(mdPath: str, outputPath: str) -> Result_generateSkeleton: + print( + f"Generating skeleton file {prettyPathString(outputPath)} from {prettyPathString(mdPath)}...", + ) + res = Result_generateSkeleton() + with ( + open(mdPath, "r", encoding="utf8") as mdFile, + open(outputPath, "w", encoding="utf8", newline="") as outputFile, + ): + for mdLine in preprocessMarkdownLines(mdFile.readlines()): + res.numTotalLines += 1 + skelLine = skeletonizeLine(mdLine) + if skelLine: + res.numTranslationPlaceholders += 1 + else: + skelLine = mdLine + outputFile.write(skelLine) + print( + f"Generated skeleton file with {res.numTotalLines} total lines and {res.numTranslationPlaceholders} translation placeholders", + ) + return res + + +@dataclass +class Result_updateSkeleton: + numAddedLines: int = 0 + numAddedTranslationPlaceholders: int = 0 + numRemovedLines: int = 0 + numRemovedTranslationPlaceholders: int = 0 + numUnchangedLines: int = 0 + numUnchangedTranslationPlaceholders: int = 0 + + +def extractSkeleton(xliffPath: str, outputPath: str): + print( + f"Extracting skeleton from {prettyPathString(xliffPath)} to {prettyPathString(outputPath)}...", + ) + with contextlib.ExitStack() as stack: + outputFile = stack.enter_context( + open(outputPath, "w", encoding="utf8", newline=""), + ) + xliff = lxml.etree.parse(xliffPath) + xliffRoot = xliff.getroot() + namespace = {"xliff": "urn:oasis:names:tc:xliff:document:2.0"} + if xliffRoot.tag != "{urn:oasis:names:tc:xliff:document:2.0}xliff": + raise ValueError("Not an xliff file") + skeletonNode = xliffRoot.find( + "./xliff:file/xliff:skeleton", + namespaces=namespace, + ) + if skeletonNode is None: + raise ValueError("No skeleton found in xliff file") + skeletonContent = skeletonNode.text.strip() + outputFile.write(skeletonContent) + print(f"Extracted skeleton to {prettyPathString(outputPath)}") + + +def updateSkeleton( + origMdPath: str, + newMdPath: str, + origSkelPath: str, + outputPath: str, +) -> Result_updateSkeleton: + print( + f"Creating updated skeleton file {prettyPathString(outputPath)} from {prettyPathString(origSkelPath)} with changes from {prettyPathString(origMdPath)} to {prettyPathString(newMdPath)}...", + ) + res = Result_updateSkeleton() + with contextlib.ExitStack() as stack: + origMdFile = stack.enter_context(open(origMdPath, "r", encoding="utf8")) + newMdFile = stack.enter_context(open(newMdPath, "r", encoding="utf8")) + origSkelFile = stack.enter_context(open(origSkelPath, "r", encoding="utf8")) + outputFile = stack.enter_context( + open(outputPath, "w", encoding="utf8", newline=""), + ) + origMdLines = preprocessMarkdownLines(origMdFile.readlines()) + newMdLines = preprocessMarkdownLines(newMdFile.readlines()) + mdDiff = difflib.ndiff(list(origMdLines), list(newMdLines)) + origSkelLines = iter(origSkelFile.readlines()) + for mdDiffLine in mdDiff: + if mdDiffLine.startswith("?"): + continue + if mdDiffLine.startswith(" "): + res.numUnchangedLines += 1 + skelLine = next(origSkelLines) + if re_translationID.match(skelLine): + res.numUnchangedTranslationPlaceholders += 1 + outputFile.write(skelLine) + elif mdDiffLine.startswith("+"): + res.numAddedLines += 1 + skelLine = skeletonizeLine(mdDiffLine[2:]) + if skelLine: + res.numAddedTranslationPlaceholders += 1 + else: + skelLine = mdDiffLine[2:] + outputFile.write(skelLine) + elif mdDiffLine.startswith("-"): + res.numRemovedLines += 1 + origSkelLine = next(origSkelLines) + if re_translationID.match(origSkelLine): + res.numRemovedTranslationPlaceholders += 1 + else: + raise ValueError(f"Unexpected diff line: {mdDiffLine}") + print( + f"Updated skeleton file with {res.numAddedLines} added lines " + f"({res.numAddedTranslationPlaceholders} translation placeholders), " + f"{res.numRemovedLines} removed lines ({res.numRemovedTranslationPlaceholders} translation placeholders), " + f"and {res.numUnchangedLines} unchanged lines ({res.numUnchangedTranslationPlaceholders} translation placeholders)", + ) + return res + + +@dataclass +class Result_generateXliff: + numTranslatableStrings: int = 0 + + +def generateXliff( + mdPath: str, + outputPath: str, + skelPath: str | None = None, +) -> Result_generateXliff: + # If a skeleton file is not provided, first generate one + with contextlib.ExitStack() as stack: + if not skelPath: + skelPath = stack.enter_context( + createAndDeleteTempFilePath_contextManager( + dir=os.path.dirname(outputPath), + prefix=os.path.basename(mdPath), + suffix=".skel", + ), + ) + generateSkeleton(mdPath=mdPath, outputPath=skelPath) + with open(skelPath, "r", encoding="utf8") as skelFile: + skelContent = skelFile.read() + res = Result_generateXliff() + print( + f"Generating xliff file {prettyPathString(outputPath)} from {prettyPathString(mdPath)} and {prettyPathString(skelPath)}...", + ) + with contextlib.ExitStack() as stack: + mdFile = stack.enter_context(open(mdPath, "r", encoding="utf8")) + outputFile = stack.enter_context( + open(outputPath, "w", encoding="utf8", newline=""), + ) + fileID = os.path.basename(mdPath) + mdUri = getRawGithubURLForPath(mdPath) + print(f"Including Github raw URL: {mdUri}") + outputFile.write( + '\n' + f'\n' + f'\n', + ) + outputFile.write(f"\n{xmlEscape(skelContent)}\n\n") + res.numTranslatableStrings = 0 + for lineNo, (mdLine, skelLine) in enumerate( + zip_longest( + preprocessMarkdownLines(mdFile.readlines()), + skelContent.splitlines(keepends=True), + ), + start=1, + ): + mdLine = mdLine.rstrip() + skelLine = skelLine.rstrip() + if m := re_translationID.match(skelLine): + res.numTranslatableStrings += 1 + prefix, ID, suffix = m.groups() + if prefix and not mdLine.startswith(prefix): + raise ValueError( + f'Line {lineNo}: does not start with "{prefix}", {mdLine=}, {skelLine=}', + ) + if suffix and not mdLine.endswith(suffix): + raise ValueError( + f'Line {lineNo}: does not end with "{suffix}", {mdLine=}, {skelLine=}', + ) + source = mdLine[len(prefix) : len(mdLine) - len(suffix)] + outputFile.write( + f'\n\nline: {lineNo + 1}\n', + ) + if prefix: + outputFile.write( + f'prefix: {xmlEscape(prefix)}\n', + ) + if suffix: + outputFile.write( + f'suffix: {xmlEscape(suffix)}\n', + ) + outputFile.write( + "\n" + f"\n" + f"{xmlEscape(source)}\n" + "\n" + "\n", # fmt: skip + ) + else: + if mdLine != skelLine: + raise ValueError( + f"Line {lineNo}: {mdLine=} does not match {skelLine=}", + ) + outputFile.write("\n") + print( + f"Generated xliff file with {res.numTranslatableStrings} translatable strings", + ) + return res + + +@dataclass +class Result_translateXliff: + numTranslatedStrings: int = 0 + + +def updateXliff( + xliffPath: str, + mdPath: str, + outputPath: str, +): + # uses generateMarkdown, extractSkeleton, updateSkeleton, and generateXliff to generate an updated xliff file. + outputDir = os.path.dirname(outputPath) + print( + f"Generating updated xliff file {prettyPathString(outputPath)} from {prettyPathString(xliffPath)} and {prettyPathString(mdPath)}...", + ) + with contextlib.ExitStack() as stack: + origMdPath = stack.enter_context( + createAndDeleteTempFilePath_contextManager( + dir=outputDir, + prefix="generated_", + suffix=".md", + ), + ) + generateMarkdown(xliffPath=xliffPath, outputPath=origMdPath, translated=False) + origSkelPath = stack.enter_context( + createAndDeleteTempFilePath_contextManager( + dir=outputDir, + prefix="extracted_", + suffix=".skel", + ), + ) + extractSkeleton(xliffPath=xliffPath, outputPath=origSkelPath) + updatedSkelPath = stack.enter_context( + createAndDeleteTempFilePath_contextManager( + dir=outputDir, + prefix="updated_", + suffix=".skel", + ), + ) + updateSkeleton( + origMdPath=origMdPath, + newMdPath=mdPath, + origSkelPath=origSkelPath, + outputPath=updatedSkelPath, + ) + generateXliff( + mdPath=mdPath, + skelPath=updatedSkelPath, + outputPath=outputPath, + ) + print(f"Generated updated xliff file {prettyPathString(outputPath)}") + + +def translateXliff( + xliffPath: str, + lang: str, + pretranslatedMdPath: str, + outputPath: str, + allowBadAnchors: bool = False, +) -> Result_translateXliff: + print( + f"Creating {lang} translated xliff file {prettyPathString(outputPath)} from {prettyPathString(xliffPath)} using {prettyPathString(pretranslatedMdPath)}...", + ) + res = Result_translateXliff() + with contextlib.ExitStack() as stack: + pretranslatedMdFile = stack.enter_context( + open(pretranslatedMdPath, "r", encoding="utf8"), + ) + xliff = lxml.etree.parse(xliffPath) + xliffRoot = xliff.getroot() + namespace = {"xliff": "urn:oasis:names:tc:xliff:document:2.0"} + if xliffRoot.tag != "{urn:oasis:names:tc:xliff:document:2.0}xliff": + raise ValueError("Not an xliff file") + xliffRoot.set("trgLang", lang) + skeletonNode = xliffRoot.find( + "./xliff:file/xliff:skeleton", + namespaces=namespace, + ) + if skeletonNode is None: + raise ValueError("No skeleton found in xliff file") + skeletonContent = skeletonNode.text.strip() + for lineNo, (skelLine, pretranslatedLine) in enumerate( + zip_longest( + skeletonContent.splitlines(), + preprocessMarkdownLines(pretranslatedMdFile.readlines()), + ), + start=1, + ): + skelLine = skelLine.rstrip() + pretranslatedLine = pretranslatedLine.rstrip() + if m := re_translationID.match(skelLine): + prefix, ID, suffix = m.groups() + if prefix and not pretranslatedLine.startswith(prefix): + raise ValueError( + f'Line {lineNo} of translation does not start with "{prefix}", {pretranslatedLine=}, {skelLine=}', + ) + if suffix and not pretranslatedLine.endswith(suffix): + if allowBadAnchors and (m := re_heading.match(pretranslatedLine)): + print( + f"Warning: ignoring bad anchor in line {lineNo}: {pretranslatedLine}", + ) + suffix = m.group(3) + if suffix and not pretranslatedLine.endswith(suffix): + raise ValueError( + f'Line {lineNo} of translation: does not end with "{suffix}", {pretranslatedLine=}, {skelLine=}', + ) + translation = pretranslatedLine[len(prefix) : len(pretranslatedLine) - len(suffix)] + try: + unit = xliffRoot.find( + f'./xliff:file/xliff:unit[@id="{ID}"]', + namespaces=namespace, + ) + if unit is not None: + segment = unit.find("./xliff:segment", namespaces=namespace) + if segment is not None: + target = lxml.etree.Element("target") + target.text = translation + target.tail = "\n" + segment.append(target) + res.numTranslatedStrings += 1 + else: + raise ValueError(f"No segment found for unit {ID}") + else: + raise ValueError(f"Cannot locate Unit {ID} in xliff file") + except Exception as e: + e.add_note(f"Line {lineNo}: {pretranslatedLine=}, {skelLine=}") + raise + elif skelLine != pretranslatedLine: + raise ValueError( + f"Line {lineNo}: pretranslated line {pretranslatedLine!r}, does not match skeleton line {skelLine!r}", + ) + xliff.write(outputPath, encoding="utf8", xml_declaration=True) + print( + f"Translated xliff file with {res.numTranslatedStrings} translated strings", + ) + return res + + +@dataclass +class Result_generateMarkdown: + numTotalLines = 0 + numTranslatableStrings = 0 + numTranslatedStrings = 0 + numBadTranslationStrings = 0 + + +def generateMarkdown( + xliffPath: str, + outputPath: str, + translated: bool = True, +) -> Result_generateMarkdown: + print( + f"Generating markdown file {prettyPathString(outputPath)} from {prettyPathString(xliffPath)}...", + ) + res = Result_generateMarkdown() + with contextlib.ExitStack() as stack: + outputFile = stack.enter_context( + open(outputPath, "w", encoding="utf8", newline=""), + ) + xliff = lxml.etree.parse(xliffPath) + xliffRoot = xliff.getroot() + namespace = {"xliff": "urn:oasis:names:tc:xliff:document:2.0"} + if xliffRoot.tag != "{urn:oasis:names:tc:xliff:document:2.0}xliff": + raise ValueError("Not an xliff file") + skeletonNode = xliffRoot.find( + "./xliff:file/xliff:skeleton", + namespaces=namespace, + ) + if skeletonNode is None: + raise ValueError("No skeleton found in xliff file") + skeletonContent = skeletonNode.text.strip() + for lineNum, line in enumerate(skeletonContent.splitlines(keepends=True), 1): + res.numTotalLines += 1 + if m := re_translationID.match(line): + prefix, ID, suffix = m.groups() + res.numTranslatableStrings += 1 + unit = xliffRoot.find( + f'./xliff:file/xliff:unit[@id="{ID}"]', + namespaces=namespace, + ) + if unit is None: + raise ValueError(f"Cannot locate Unit {ID} in xliff file") + segment = unit.find("./xliff:segment", namespaces=namespace) + if segment is None: + raise ValueError(f"No segment found for unit {ID}") + source = segment.find("./xliff:source", namespaces=namespace) + if source is None: + raise ValueError(f"No source found for unit {ID}") + translation = "" + if translated: + target = segment.find("./xliff:target", namespaces=namespace) + if target is not None: + targetText = target.text + if targetText: + translation = targetText + # Crowdin treats empty targets () as a literal translation. + # Filter out such strings and count them as bad translations. + if translation in ( + "", + "<target/>", + "", + "<target></target>", + ): + res.numBadTranslationStrings += 1 + translation = "" + else: + res.numTranslatedStrings += 1 + # If we have no translation, use the source text + if not translation: + sourceText = source.text + if sourceText is None: + raise ValueError(f"No source text found for unit {ID}") + translation = sourceText + outputFile.write(f"{prefix}{translation}{suffix}\n") + else: + outputFile.write(line) + print( + f"Generated markdown file with {res.numTotalLines} total lines, {res.numTranslatableStrings} translatable strings, and {res.numTranslatedStrings} translated strings. Ignoring {res.numBadTranslationStrings} bad translated strings", + ) + return res + + +def ensureMarkdownFilesMatch(path1: str, path2: str, allowBadAnchors: bool = False): + print( + f"Ensuring files {prettyPathString(path1)} and {prettyPathString(path2)} match...", + ) + with contextlib.ExitStack() as stack: + file1 = stack.enter_context(open(path1, "r", encoding="utf8")) + file2 = stack.enter_context(open(path2, "r", encoding="utf8")) + for lineNo, (line1, line2) in enumerate( + zip_longest( + preprocessMarkdownLines(file1.readlines()), + preprocessMarkdownLines(file2.readlines()), + ), + start=1, + ): + line1 = line1.rstrip() + line2 = line2.rstrip() + if line1 != line2: + if ( + re_postTableHeaderLine.match(line1) + and re_postTableHeaderLine.match(line2) + and line1.count("|") == line2.count("|") + ): + print( + f"Warning: ignoring cell padding of post table header line at line {lineNo}: {line1}, {line2}", + ) + continue + if ( + re_hiddenHeaderRow.match(line1) + and re_hiddenHeaderRow.match(line2) + and line1.count("|") == line2.count("|") + ): + print( + f"Warning: ignoring cell padding of hidden header row at line {lineNo}: {line1}, {line2}", + ) + continue + if allowBadAnchors and (m1 := re_heading.match(line1)) and (m2 := re_heading.match(line2)): + print( + f"Warning: ignoring bad anchor in headings at line {lineNo}: {line1}, {line2}", + ) + line1 = m1.group(1) + m1.group(2) + line2 = m2.group(1) + m2.group(2) + if line1 != line2: + raise ValueError( + f"Files do not match at line {lineNo}: {line1=} {line2=}", + ) + print("Files match") + + +def markdownTranslateCommand(command: str, *args): + print(f"Running markdownTranslate command: {command} {' '.join(args)}") + subprocess.run(["python", __file__, command, *args], check=True) + + +def pretranslateAllPossibleLanguages(langsDir: str, mdBaseName: str): + # This function walks through all language directories in the given directory, skipping en (English) and translates the English xlif and skel file along with the lang's pretranslated md file + enXliffPath = os.path.join(langsDir, "en", f"{mdBaseName}.xliff") + if not os.path.exists(enXliffPath): + raise ValueError(f"English xliff file {enXliffPath} does not exist") + allLangs = set() + succeededLangs = set() + skippedLangs = set() + for langDir in os.listdir(langsDir): + if langDir == "en": + continue + langDirPath = os.path.join(langsDir, langDir) + if not os.path.isdir(langDirPath): + continue + langPretranslatedMdPath = os.path.join(langDirPath, f"{mdBaseName}.md") + if not os.path.exists(langPretranslatedMdPath): + continue + allLangs.add(langDir) + langXliffPath = os.path.join(langDirPath, f"{mdBaseName}.xliff") + if os.path.exists(langXliffPath): + print(f"Skipping {langDir} as the xliff file already exists") + skippedLangs.add(langDir) + continue + try: + translateXliff( + xliffPath=enXliffPath, + lang=langDir, + pretranslatedMdPath=langPretranslatedMdPath, + outputPath=langXliffPath, + allowBadAnchors=True, + ) + except Exception as e: + print(f"Failed to translate {langDir}: {e}") + continue + rebuiltLangMdPath = os.path.join(langDirPath, f"rebuilt_{mdBaseName}.md") + try: + generateMarkdown( + xliffPath=langXliffPath, + outputPath=rebuiltLangMdPath, + ) + except Exception as e: + print(f"Failed to rebuild {langDir} markdown: {e}") + os.remove(langXliffPath) + continue + try: + ensureMarkdownFilesMatch( + rebuiltLangMdPath, + langPretranslatedMdPath, + allowBadAnchors=True, + ) + except Exception as e: + print( + f"Rebuilt {langDir} markdown does not match pretranslated markdown: {e}", + ) + os.remove(langXliffPath) + continue + os.remove(rebuiltLangMdPath) + print(f"Successfully pretranslated {langDir}") + succeededLangs.add(langDir) + if len(skippedLangs) > 0: + print(f"Skipped {len(skippedLangs)} languages already pretranslated.") + print( + f"Pretranslated {len(succeededLangs)} out of {len(allLangs) - len(skippedLangs)} languages.", + ) + + +if __name__ == "__main__": + mainParser = argparse.ArgumentParser() + commandParser = mainParser.add_subparsers( + title="commands", + dest="command", + required=True, + ) + generateXliffParser = commandParser.add_parser("generateXliff") + generateXliffParser.add_argument( + "-m", + "--markdown", + dest="md", + type=str, + required=True, + help="The markdown file to generate the xliff file for", + ) + generateXliffParser.add_argument( + "-o", + "--output", + dest="output", + type=str, + required=True, + help="The file to output the xliff file to", + ) + updateXliffParser = commandParser.add_parser("updateXliff") + updateXliffParser.add_argument( + "-x", + "--xliff", + dest="xliff", + type=str, + required=True, + help="The original xliff file", + ) + updateXliffParser.add_argument( + "-m", + "--newMarkdown", + dest="md", + type=str, + required=True, + help="The new markdown file", + ) + updateXliffParser.add_argument( + "-o", + "--output", + dest="output", + type=str, + required=True, + help="The file to output the updated xliff to", + ) + translateXliffParser = commandParser.add_parser("translateXliff") + translateXliffParser.add_argument( + "-x", + "--xliff", + dest="xliff", + type=str, + required=True, + help="The xliff file to translate", + ) + translateXliffParser.add_argument( + "-l", + "--lang", + dest="lang", + type=str, + required=True, + help="The language to translate to", + ) + translateXliffParser.add_argument( + "-p", + "--pretranslatedMarkdown", + dest="pretranslatedMd", + type=str, + required=True, + help="The pretranslated markdown file to use", + ) + translateXliffParser.add_argument( + "-o", + "--output", + dest="output", + type=str, + required=True, + help="The file to output the translated xliff file to", + ) + generateMarkdownParser = commandParser.add_parser("generateMarkdown") + generateMarkdownParser.add_argument( + "-x", + "--xliff", + dest="xliff", + type=str, + required=True, + help="The xliff file to generate the markdown file for", + ) + generateMarkdownParser.add_argument( + "-o", + "--output", + dest="output", + type=str, + required=True, + help="The file to output the markdown file to", + ) + generateMarkdownParser.add_argument( + "-u", + "--untranslated", + dest="translated", + action="store_false", + help="Generate the markdown file with the untranslated strings", + ) + ensureMarkdownFilesMatchParser = commandParser.add_parser( + "ensureMarkdownFilesMatch", + ) + ensureMarkdownFilesMatchParser.add_argument( + dest="path1", + type=str, + help="The first markdown file", + ) + ensureMarkdownFilesMatchParser.add_argument( + dest="path2", + type=str, + help="The second markdown file", + ) + pretranslateLangsParser = commandParser.add_parser("pretranslateLangs") + pretranslateLangsParser.add_argument( + "-d", + "--langs-dir", + dest="langsDir", + type=str, + required=True, + help="The directory containing the language directories", + ) + pretranslateLangsParser.add_argument( + "-b", + "--md-base-name", + dest="mdBaseName", + type=str, + required=True, + help="The base name of the markdown files to pretranslate", + ) + args = mainParser.parse_args() + match args.command: + case "generateXliff": + generateXliff(mdPath=args.md, outputPath=args.output) + case "updateXliff": + updateXliff( + xliffPath=args.xliff, + mdPath=args.md, + outputPath=args.output, + ) + case "generateMarkdown": + generateMarkdown( + xliffPath=args.xliff, + outputPath=args.output, + translated=args.translated, + ) + case "translateXliff": + translateXliff( + xliffPath=args.xliff, + lang=args.lang, + pretranslatedMdPath=args.pretranslatedMd, + outputPath=args.output, + ) + case "pretranslateLangs": + pretranslateAllPossibleLanguages( + langsDir=args.langsDir, + mdBaseName=args.mdBaseName, + ) + case "ensureMarkdownFilesMatch": + ensureMarkdownFilesMatch(path1=args.path1, path2=args.path2) + case _: + raise ValueError(f"Unknown command: {args.command}") diff --git a/.github/scripts/setOutputs.py b/.github/scripts/setOutputs.py new file mode 100644 index 0000000..81385ae --- /dev/null +++ b/.github/scripts/setOutputs.py @@ -0,0 +1,21 @@ +# Copyright (C) 2025-2026 NV Access Limited, Noelia Ruiz Martínez +# This file is covered by the GNU General Public License. +# See the file COPYING for more details. + +import os +import sys + +sys.path.insert(0, os.getcwd()) +import buildVars + + +def main(): + addonId = buildVars.addon_info["addon_name"] + name = "addonId" + value = addonId + with open(os.environ["GITHUB_OUTPUT"], "a") as f: + _ = f.write(f"{name}={value}\n") + + +if __name__ == "__main__": + main() diff --git a/.github/workflows/auto-update-translations.yaml b/.github/workflows/auto-update-translations.yaml deleted file mode 100644 index 61d57c6..0000000 --- a/.github/workflows/auto-update-translations.yaml +++ /dev/null @@ -1,14 +0,0 @@ -name: Auto update translations - -on: - push: - branches: - - main - schedule: - # * is a special character in YAML so you have to quote this string - - cron: '0 0 * * 6' - -jobs: - auto_update_translations: - uses: abdel792/autoUpdateTranslations/.github/workflows/l10n-updates.yaml@8ac89c644395cf2aad6e03a4bb2be5c36526d12a - \ No newline at end of file diff --git a/.github/workflows/build_addon.yml b/.github/workflows/build_addon.yml index ae5b5db..59f9ee1 100644 --- a/.github/workflows/build_addon.yml +++ b/.github/workflows/build_addon.yml @@ -4,48 +4,54 @@ on: push: tags: ["*"] # To build on main/master branch, uncomment the following line: - branches: [ main , master ] + # branches: [ main , master ] pull_request: branches: [ main, master ] workflow_dispatch: + workflow_call: jobs: build: + # Building the add-on template as an add-on does not make sense (and fails). + # Do not modify this repo name with your own one! (should remain the template) + if: github.repository != 'nvaccess/addonTemplate' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 - - - run: echo -e "pre-commit\nscons\nmarkdown">requirements.txt - - - name: Set up Python - uses: actions/setup-python@v6 + - name: Checkout repo + uses: actions/checkout@v6 + - name: Install uv + uses: astral-sh/setup-uv@v7 with: - python-version: 3.13.13 - cache: 'pip' - + enable-cache: true - name: Install dependencies run: | - python -m pip install --upgrade pip wheel - pip install -r requirements.txt sudo apt-get update -y sudo apt-get install -y gettext + uv sync - name: Code checks - run: export SKIP=no-commit-to-branch; pre-commit run --all + run: export SKIP=no-commit-to-branch; uv run pre-commit run --all-files - name: building addon - run: scons && scons pot + run: uv run scons && uv run scons pot - uses: actions/upload-artifact@v7 with: name: packaged_addon path: | ./*.nvda-addon + archive: false + + - uses: actions/upload-artifact@v7 + with: + name: translation_template + path: | ./*.pot + archive: false upload_release: runs-on: ubuntu-latest @@ -55,8 +61,11 @@ jobs: contents: write steps: - uses: actions/checkout@v6 - - name: download releases files + - name: download all artifacts uses: actions/download-artifact@v8 + with: + path: . + merge-multiple: true - name: Display structure of downloaded files run: ls -R - name: Calculate sha256 diff --git a/.github/workflows/crowdinL10n.yml b/.github/workflows/crowdinL10n.yml new file mode 100644 index 0000000..04b274a --- /dev/null +++ b/.github/workflows/crowdinL10n.yml @@ -0,0 +1,63 @@ +name: Crowdin l10n + +on: + workflow_dispatch: + schedule: + # Every Thursday at 09:32 UTC + - cron: '32 9 * * 4' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +env: + crowdinAuthToken: ${{ secrets.CROWDIN_TOKEN }} + downloadTranslationsBranch: l10n + GH_TOKEN: ${{ github.token }} + CROWDIN_PROJECT_ID: ${{ vars.CROWDIN_PROJECT_ID || 780748 }} + L10N_UTIL_CONFIG: ${{ vars.L10N_UTIL_CONFIG || 'addon' }} + +jobs: + crowdinSync: + runs-on: windows-latest + permissions: + contents: write + + steps: + - name: Random startup delay (0-5 minutes) + if: github.event_name == 'schedule' + shell: pwsh + run: | + $delaySeconds = Get-Random -Minimum 0 -Maximum 301 + Write-Host "Sleeping for $delaySeconds seconds..." + Start-Sleep -Seconds $delaySeconds + - name: Checkout add-on + uses: actions/checkout@v6 + with: + submodules: true + - name: Set up Python + uses: actions/setup-python@v6 + with: + python-version-file: ".python-version" + - name: Install uv + uses: astral-sh/setup-uv@v7 + - name: Install dependencies + run: uv sync + - name: Install gettext + run: | + choco install -y gettext + # Add gettext to PATH for current and future steps + $gettextPath = "C:\Program Files\gettext-iconv\bin" + echo "$gettextPath" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + - name: Get add-on info + id: getAddonInfo + shell: pwsh + run: uv run ./.github/scripts/setOutputs.py + - name: Download l10nUtil + run: | + gh release download --repo nvaccess/nvdaL10n --pattern "l10nUtil.exe" + - name: Download translations from Crowdin + shell: pwsh + env: + ADDON_ID: ${{ steps.getAddonInfo.outputs.addonId }} + run: ./.github/scripts/crowdinSync.ps1 diff --git a/.github/workflows/fetch-crowdin-translations.yaml b/.github/workflows/fetch-crowdin-translations.yaml deleted file mode 100644 index 1bb729e..0000000 --- a/.github/workflows/fetch-crowdin-translations.yaml +++ /dev/null @@ -1,19 +0,0 @@ -name: Fetch translations from Crowdin -on: - push: - branches: - - main - schedule: - # * is a special character in YAML so you have to quote this string - - cron: '0 0 * * 5' - workflow_dispatch: -jobs: - fetchTranslations: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Checkout code - uses: actions/checkout@v6 - - name: Fetch translations from Crowdin - uses: nvdaaddons/crowdinRegistration/.github/actions/fetchTranslations@main \ No newline at end of file diff --git a/.github/workflows/manual-release.yaml b/.github/workflows/manual-release.yaml index b81dd19..2a896f6 100644 --- a/.github/workflows/manual-release.yaml +++ b/.github/workflows/manual-release.yaml @@ -7,18 +7,26 @@ on: description: "Add-on version, if not defined, will be set to today's date in the format recommended by nvaccess/addonStore" required: false default: '' + prerelease: description: 'True if this is a prerelease' type: boolean required: false default: false + + updateYear: + description: 'Update addon_lastTestedNVDAVersion in buildVars.py to current year (optional for stable, automatic for beta/dev)' + type: boolean + required: false + default: false + channel: type: choice description: Choose a channel for your release options: - - stable - - dev - - beta + - stable + - dev + - beta default: stable required: false @@ -76,52 +84,73 @@ jobs: run: echo '${{ env.CUR_YEAR }}' - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v4 - - name: Set up Python 3.8 - uses: actions/setup-python@v6 + - name: Set up Python 3.11 + uses: actions/setup-python@v5 with: - python-version: 3.13.13 + python-version: 3.11 - name: Install dependencies run: | - pip install -U pip scons markdown flake8 flake8-tabs mypy + pip install -U pip scons markdown ruff mypy sudo apt update sudo apt install gettext - - name: Lint with flake8 + - name: Lint with ruff run: | - # Stop the build if there are any errors - flake8 addon --count --select=E9,F63,F7,F82 --show-source --statistics - # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide - flake8 addon --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics + python -m ruff check addon - name: Lint with mypy run: | - python -m mypy addon + python -m mypy addon --install-types --non-interactive - name: Add add-on version run: | import re version='${{ env.BUILD_VERSION }}' year='${{ env.CUR_YEAR }}' - with open("buildVars.py", 'r+', encoding='utf-8') as f: - text=f.read() - pattern=r"\"addon_lastTestedNVDAVersion\": .*?(\d{4})" - match=re.search(pattern, text) - checkYear=match.group(1) - text=re.sub(r"\"addon_version\": .*?,", f"\"addon_version\": \"{version}\",", text) - if checkYear> sha256.txt - name: Release - uses: softprops/action-gh-release@v3 + uses: softprops/action-gh-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/.github/workflows/release-on-tag.yaml b/.github/workflows/release-on-tag.yaml deleted file mode 100644 index 287ac19..0000000 --- a/.github/workflows/release-on-tag.yaml +++ /dev/null @@ -1,73 +0,0 @@ -name: Release On Tag -on: - push: - tags: - - v* - workflow_call: - -jobs: - create-release-on-tag: - name: Create release on tag - continue-on-error: true - runs-on: ubuntu-latest - permissions: write-all - - steps: - - name: Date formatting - uses: ajilraju/actions-date@master #release v0.1 - with: - args: date +%F - - - name: Environment variable for current date - run: | - echo "CUR_DATE=$(date +%Y%m%d)" >> $GITHUB_ENV - - - name: Conditional environment variables for dev - if: ${{ endsWith(github.ref_name, '-dev') }} - run: | - echo 'RELEASE_TITLE=Dev build' >> $GITHUB_ENV - echo 'MINOR_PATCH=1.0' >> $GITHUB_ENV - echo 'PRE_RELEASE=true' >> $GITHUB_ENV - - - name: Conditional environment variables for stable - if: ${{ !endsWith(github.ref_name, '-dev') }} - run: | - echo 'RELEASE_TITLE=Stable build' >> $GITHUB_ENV - echo 'MINOR_PATCH=0.0' >> $GITHUB_ENV - echo 'PRE_RELEASE=false' >> $GITHUB_ENV - - - name: Check new environment variables - run: | - echo '${{ env.CUR_DATE }} ${{ env.RELEASE_TITLE }} ${{ env.PRE_RELEASE }} ${{ env.MINOR_PATCH }}' - - - name: Checkout code - uses: actions/checkout@v6 - - name: Set up Python 3.8 - uses: actions/setup-python@v6 - with: - python-version: 3.13.13 - - name: Install dependencies - run: | - pip install scons markdown - sudo apt update - sudo apt install gettext - - - name: Built - run: | - scons version=${{ env.CUR_DATE }}.${{ env.MINOR_PATCH }} - - - name: Calculate sha256 - run: sha256sum *.nvda-addon >> sha256.txt - - - name: Release - uses: softprops/action-gh-release@v3 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - files: | - *.nvda-addon - sha256.txt - generate_release_notes: true - prerelease: ${{ env.PRE_RELEASE }} - tag_name: ${{ github.ref_name }} - body_path: 'changelog.md' diff --git a/.gitignore b/.gitignore index 0be8af1..a6ccee5 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ manifest.ini *.nvda-addon .sconsign.dblite /[0-9]*.[0-9]*.[0-9]*.json +*.egg-info diff --git a/.python-version b/.python-version new file mode 100644 index 0000000..24ee5b1 --- /dev/null +++ b/.python-version @@ -0,0 +1 @@ +3.13 diff --git a/addon/doc/af_ZA/readme.md b/addon/doc/af_ZA/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/af_ZA/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/am/readme.md b/addon/doc/am/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/am/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/an/readme.md b/addon/doc/an/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/an/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/ar/readme.md b/addon/doc/ar/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/ar/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/bg/readme.md b/addon/doc/bg/readme.md index 09353c8..8021c06 100644 --- a/addon/doc/bg/readme.md +++ b/addon/doc/bg/readme.md @@ -1,71 +1,104 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +# Добавка за NVDA за часовника и календара # + +* Автори: Hrvoje Katić, Abdel и други сътрудници на NVDA +* Изтегляне на [стабилна версия][1] + +* Съвместимост с NVDA: от 2019.3 и по-нови версии + +Тази добавка за NVDA разширява възможностите за работа с часовника, алармата +за обратно отброяване и календара. + +Можете да персонализирате как NVDA ще извежда с глас и брайл часа и датата, +вместо да използвате зададените за целта в Windows формати. Освен това +можете да получите информация за текущия ден и номера на седмицата от +текущата година, както и да зададете автоматично съобщаване на часа на +определен интервал от време. В добавката са вградени и функции за хронометър +и таймер с аларма, които ви позволяват да засичате времето за задачите си, +като копиране на файлове, инсталиране на програми или готвене. + +Забележки: + +* Ако инсталирате добавката като обновление, по време на процеса на + инсталиране съветникът установява дали старата конфигурация е съвместима с + новата и предлага да я коригирате преди да я инсталирате. Тогава ще трябва + само да потвърдите със задействане на бутона "OK", че всичко е наред. +* В Windows 10 и по -нови версии можете да използвате приложението "Аларми и + часовник" за управление на хронометъра и таймерите. + +## Клавишни комбинации + +* NVDA+F12: Съобщаване на текущия час. +* Двукратно бързо натискане на NVDA+F12: Съобщаване на текущата дата. +* Трикратно бързо натискане на NVDA+F12: Съобщаване на текущия ден, номера + на седмицата, текущата година и оставащите дни преди края на годината +* NVDA+Shift+F12: Влизане в слоя за часовника + +## Неприсвоени команди + +Следните команди по подразбиране не са зададени. Ако искате да ги присвоите, +използвайте диалоговия прозорец "Жестове на въвеждане", за да добавите +персонализирани команди. За да направите това, отворете менюто на NVDA -> +Настройки -> Жестове на въвеждане. Разгънете категорията "Часовник", след +това намерете неприсвоени команди от списъка по -долу и изберете "Добави", +след което въведете жеста, който искате да използвате. + +* Изминало и оставащо време преди следващата аларма. Двукратното бързо + задействане на този жест ще анулира следващата аларма. +* Спира просвирването на звука от текущата аларма. +* Показване на диалоговия прозорец за планиране на аларми. + +## Слоеви команди + +За да използвате слоевите команди, натиснете NVDA+Shift+F12, последвано от +един от следните клавиши: + +* S: Стартира, нулира или спира хронометъра +* R: Нулира хронометъра, без да го рестартира +* A: Съобщава оставащото и изминалото време преди следващата аларма +* T: Отваряне на диалоговия прозорец за планиране на аларми. +* C: Отмяна на следващата аларма +* Интервал: Изговаря текущия хронометър или таймера за обратно отброяване +* P: Ако дадена аларма е прекалено дълга, ви позволява да я спрете +* H: Списък на всички слоеви команди (Помощ) + +## Настройка и начин на употреба + +За да конфигурирате функциите на часовника, отворете менюто на NVDA -> +Настройки -> Опции и от категорията "Часовник" конфигурирайте следните +опции: + +* Формат за показване на час и дата: Използвайте тези падащи списъци, за да + конфигурирате как NVDA ще съобщава часа и датата, когато натиснете + NVDA+F12 еднократно или двукратно. +* Интервал: Изберете интервала за съобщаване на часа от този падащ списък + (изключено, на всеки 10 минути, 15 минути, 30 минути или на всеки час). +* Съобщаване на часа (активно, ако интервалът не е зададен на "Изключено"): + Изберете между реч и звук, само звук или само реч. +* Звук на часовника (активно, ако интервалът не е зададен на "Изключено"): + Изберете звука на часовника. +* Тихи часове (активно, ако интервалът не е зададен на "Изключено"): + Поставете отметка в това поле, за да конфигурирате диапазона на тихите + часове, в който не трябва да се извършва автоматично оповестяване на часа. +* Формат на часа за тихи часове (активно, ако е включен режима "Тихи + часове"): Изберете как да се представят опциите за тихи часове (12-часов + или 24-часов формат). +* Начален и краен час за тихите часове: Изберете диапазона в часове и минути + за тихи часове от падащите списъци за часове и минути. + +За да планирате аларми, отворете менюто на NVDA -> Инструменти -> Планиране +на аларми. Съдържанието на диалоговия прозорец включва: + +* Продължителност на алармата в: Изберете продължителност на + алармата/таймера между часове, минути и секунди. +* Продължителност: Въведете продължителността на алармата в посочената + по-горе единица. +* Звук на алармата: Изберете звука на алармата, който да се възпроизвежда. +* Бутони "Спри" и "Пауза": Спиране или поставяне на пауза на дълъг алармен + звук. + +Задействайте бутона "OK" и съобщение ще ви информира за продължителността на +текущо избраната аларма. + +[[!tag stable]] + +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/bn/readme.md b/addon/doc/bn/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/bn/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/bs/readme.md b/addon/doc/bs/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/bs/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/ca/readme.md b/addon/doc/ca/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/ca/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/ckb/readme.md b/addon/doc/ckb/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/ckb/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/cs/readme.md b/addon/doc/cs/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/cs/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/da/readme.md b/addon/doc/da/readme.md index 09353c8..5506f12 100644 --- a/addon/doc/da/readme.md +++ b/addon/doc/da/readme.md @@ -1,71 +1,103 @@ -# Clock and calendar Add-on for NVDA # +# Ur og kalender for NVDA # * Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +* Download [stabil version][1] + +* NVDA-kompatibilitet: 2019.3 og nyere + +Denne tilføjelse tilføjer avancerede ur, alarm, tidtagning og +kalenderfunktionalitet til NVDA. + +Du kan konfigurere NvDA til at annoncere klokkeslæt og dato i andre +formater, end hvad Windows leverer som standard. Derudover kan du få den +aktuelle dag, ugenummer samt de resterende dage inden udgangen af det +aktuelle år, og du kan også indstille automatiske tidsannoncering for et +angivet interval. Der er også et stopur og tidtagningsfunktioner indbygget i +tilføjelsen, der lader dig time dine opgaver, såsom kopiering af filer, +installation af programmer eller tilberedning af måltider. + +Bemærkninger: + +* Hvis du installerer tilføjelsen som en opdatering, opdager guiden under + installationsprocessen, om den gamle konfiguration er kompatibel med den + nye, og tilbyder at rette den før installation. Tryk på "ok" for at + bekræfte. +* I Windows 10 og nyere kan du bruge appen Alarmer og ur til at administrere + stopur og timere. + +## Tastaturkommandoer + +* NVDA+F12: Få den aktuelle tid oplyst. +* NVDA+F12 trykket hurtigt to gange: få aktuel dato +* NVDA+F12 trykket tre gange hurtigt: Oplyser den aktuelle dag, ugenummeret, + det aktuelle år og de resterende dage før årets udgang. +* NVDA+Shift+F12: indtast urlag + +## Ikke-tildelte kommandoer + +Følgende kommandoer er ikke tildelt som standard. Hvis du ønsker at +tilknytte dem, skal du bruge dialogboksen "Håndter kommandoer" til at +tilføje brugerdefinerede kommandoer. For at gøre det skal du åbne +NVDA-menuen, Opsætning og derefter Håndter kommandoer. Udvid kategorien Ur, +find derefter ikke-tildelte kommandoer fra listen nedenfor, og vælg +"Tilføj", og indtast derefter den kommando, du ønsker at bruge. + +* Forløbet og resterende tid før næste alarm. Hvis du trykker denne kommando + to gange hurtigt, annulleres den næste alarm. +* Stop afspilning af den aktuelle alarmlyd +* Vis dialog til indstilling af alarmer + +## Lagrede kommandoer + +For at bruge lagrede kommandoer skal du trykke på NVDA+Skift+F12 efterfulgt +af en af følgende taster: + +* S: Starter, nulstiller eller stopper stopuret +* R: Nulstiller stopuret til 0 uden at genstarte det +* A: Giver den resterende og forløbet tid før den næste alarm +* T: Åbner dialogen til indstilling af alarmer. +* C: Annuller den næste alarm +* Mellemrum: Udtaler nuværende stopur eller nedtælling +* P: Hvis en alarm er for lang, kan du stoppe den via dette tastetryk. +* H: Liste over alle lagdelte kommandoer (Hjælp) + +## Konfiguration og brug + +For at konfigurere urfunktionaliteten skal du åbne NvDA-menuen, Opsætning og +derefter Indstillinger og konfigurere følgende muligheder fra +indstillingskategorien Ur: + +* Visningsformat for klokkeslæt og dato: Brug disse kombinationsbokse til at + konfigurere, hvordan NVDA vil annoncere klokkeslæt og dato, når du trykker + på NVDA+F12 en eller to gange hurtigt. +* Interval: Vælg tidsmeddelelsesintervallet fra denne combo box( fra, hvert + 10. minut, 15. minut, 30. minut eller hver time). +* Tidsannoncering (aktiveret, hvis interval ikke er slået fra): vælg mellem + tale og lyd, kun lyd eller kun tale. +* Urets ringelyd (aktiveret, hvis interval ikke er slået fra): vælg lyden + for uret. +* Checkboxe "Stilletimer" (kun synlig, hvis muligheden "Fra" ikke er valgt i + boksen) giver dig mulighed for at konfigurere tidsintervallet, hvor den + automatiske tidsannoncering ikke skal forekomme. +* Tidsformat for stilletimer (aktiveret, hvis stilletimer er aktiveret): + vælg, hvordan indstillingerne for stilletimer præsenteres (12-timers eller + 24-timers format). +* Stilletimers start- og sluttidspunkter: Vælg time- og minutinterval for + stilletimer fra combo boxe for timer og minutter. + +For at planlægge alarmer skal du åbne NVDA-menuen, Værktøjer, og derefter +vælge Indstil alarmer. Dialogen indeholder følgende indstillinger: + +* Alarmens varighed i: Vælg alarm/timer-varighed mellem timer, minutter og + sekunder. +* Varighed: Indtast alarmvarigheden som anvist ovenfor. +* Alarmlyd: Vælg den alarmlyd, der skal afspilles. +* Knapper til pause og stop giver dig mulighed for at sætte alarmen på pause + og genoptage lange alarmer. + +Klik på OK, og en meddelelse vil informere dig om den aktuelt valgte +alarmvarighed. + +[[!tag stable]] + +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/de/readme.md b/addon/doc/de/readme.md index 09353c8..dfcba7d 100644 --- a/addon/doc/de/readme.md +++ b/addon/doc/de/readme.md @@ -1,71 +1,109 @@ -# Clock and calendar Add-on for NVDA # +# NVDA-Erweiterung für Uhr und Kalender # * Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +* [Stabile Version herunterladen][1] + +* NVDA-Kompatibilität: 2019.3 und neuer + +Diese NVDA-Erweiterung aktiviert die erweiterten Funktionen für Uhr, Wecker +und Kalender. + +Sie können NVDA so konfigurieren, dass Uhrzeit und Datum in anderen als den +von Windows standardmäßig bereitgestellten Formaten mitgeteilt +werden. Darüber hinaus können Sie den aktuellen Tag, die Wochennummer sowie +die verbleibenden Tage bis zum Ende des laufenden Jahres abrufen und die +automatische Zeitansage in bestimmten Intervallen einstellen. In die +Erweiterung sind auch eine Stoppuhr und ein Wecker integriert, mit denen Sie +Ihre Aufgaben wie das Kopieren von Dateien, das Installieren von Programmen +oder das Kochen von Mahlzeiten zeitlich festlegen können. + +Anmerkungen: + +* Wenn Sie die Erweiterung als Update installieren, erkennt der Assistent + während des Installationsvorgangs, ob die alte Konfiguration mit der neuen + kompatibel ist und bietet an, die Angaben während der Installation zu + berichtigen, dann müssen Sie zur Bestätigung nur auf die Schaltfläche "OK" + klicken. +* Unter Windows 10 und neuer können Sie die Wecker- und Uhr-App verwenden, + um Stoppuhr und Timer zu verwalten. + +## Tastenbefehle + +* NVDA+F12: Aktuelle Uhrzeit abrufen +* NVDA+F12 zweimal schnell drücken: Aktuelles Datum abrufen +* NVDA+F12 dreimal schnell gedrückt: Zeigt den aktuellen Tag, die + Wochennummer, das aktuelle Jahr und die verbleibenden Tage bis zum + Jahresende an +* NVDA+Umschalt+F12: Befehl für die Uhr eingeben + +## Nicht zugewiesene Befehle + +Die folgenden Befehle sind standardmäßig nicht zugewiesen; Wenn Sie sie +zuweisen möchten, verwenden Sie das Dialogfeld für die Tastenbefehle, um +benutzerdefinierte Befehle hinzuzufügen. Öffnen Sie dazu das NVDA-Menü, +Einstellungen und dann Tastenbefehle. Erweitern Sie die Kategorie "Uhr", +suchen Sie dann in der Liste unten nach nicht zugewiesenen Befehlen und +wählen Sie "Hinzufügen" aus. Geben Sie dann den gewünschte Tastenkombination +ein. + +* Verstrichene und verbleibende Zeit bis zum nächsten Alarm. Durch + zweimaliges schnelles Drücken diesen Tastenbefehls wird der nächste Alarm + abgebrochen. +* Unterbricht den aktuellen Alarmton. +* Dialogfeld "Geplante Alarme" anzeigen. + +## Befehle + +Um die Befehle zu verwenden, drücken Sie NVDA+Umschalt+F12 gefolgt von einer +der folgenden Tasten: + +* S: Startet oder stoppt oder setzt die Stoppuhr zurück +* R: Setzt die Stoppuhr auf 0 zurück, ohne sie neu zu starten +* A: Gibt die verstrichene und verbleibende Zeit bis zum nächsten Alarm aus +* T: Öffnet das Dialogfenster "Alarme planen". +* C: Abbrechen des nächsten Alarms +* Leertaste: Sagt die aktuelle Stoppuhr oder den Countdown-Timer an +* p: Wenn ein Alarm anhält, kann dieser damit gestoppt werden +* H: Alle Befehle auflisten (Hilfe) + +## Konfiguration und Nutzung + +Um die Uhr zu konfigurieren, öffnen Sie das NVDA-Menü, Optionen, dann +Einstellungen und konfigurieren Sie die folgenden Optionen im Bedienfeld der +Uhr: + +* Anzeigeformat für Uhrzeit und Datum: Verwenden Sie diese + Kombinationsfelder, um zu konfigurieren, wie NVDA Uhrzeit und Datum + mitteilt, wenn Sie NVDA+F12 ein- bzw. zweimal schnell drücken. +* Intervall: Wählen Sie das Intervall für die Zeitansage aus diesem + Kombinationsfeld (Ausgeschaltet, Alle 10 Minuten, 15 Minuten, 30 Minuten + oder Stündlich). +* Zeitansage (aktiviert, wenn Intervall nicht ausgeschaltet ist): Wählen Sie + zwischen "Ton und Ansage", "Nur Ton" oder "Nur Ansage" aus. +* Alarmton (aktiviert, wenn Intervall nicht ausgeschaltet ist): Wählen Sie + den alarmton aus. +* Ruhezeiten (aktiviert, wenn Intervall nicht deaktiviert ist): Aktivieren + Sie dieses Kontrollkästchen, um den Ruhezeitbereich zu konfigurieren, in + dem keine automatische Zeitansage erfolgen soll. +* Zeitformat für Ruhezeiten (aktiviert, wenn Ruhezeiten aktiviert sind): + Wählen Sie aus, wie die Optionen für Ruhezeiten dargestellt werden + (12-Stunden- oder 24-Stunden-Format). +* Start- und Endzeiten für Ruhezeiten: Wählen Sie den Bereich für Stunden + und Minuten für die Ruhezeiten aus den Kombinationsfeldern für Stunden und + Minuten aus. + +Um Alarme zu planen, öffnen Sie das NVDA-Menü, Werkzeuge, und wählen Sie +dann den eintrag "Alarme planen" aus. Die Dialogfelder umfassen: + +* Alarmdauer in: Wählen Sie die Alarm-/Weckdauer zwischen Stunden, Minuten + und Sekunden. +* Dauer: Geben Sie die Alarmdauer in der oben angegebenen Einheit ein. +* Alarmton: Wählen Sie den abzuspielenden Alarmton aus. +* Stopp und Pause: Stoppen oder pausieren Sie einen anhaltenden Alarmton. + +Klicken Sie auf "OK" und eine Meldung informiert Sie über die aktuell +ausgewählte Alarmdauer. + +[[!tag stable]] + +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/de_CH/readme.md b/addon/doc/de_CH/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/de_CH/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/el/readme.md b/addon/doc/el/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/el/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/es/readme.md b/addon/doc/es/readme.md index 09353c8..4cabbd3 100644 --- a/addon/doc/es/readme.md +++ b/addon/doc/es/readme.md @@ -1,71 +1,105 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +# Complemento reloj y calendario para NVDA # + +* Autores: Hrvoje Katić, Abdel y colaboradores de NVDA +* Descargar [versión estable][1] + +* Compatibilidad con NVDA: de 2019.3 en adelante + +Este complemento habilita funciones avanzadas de reloj, temporizador de +alarma y calendario para NVDA. + +Puedes configurar NVDA para que anuncie la fecha y la hora en formatos +distintos a los que tiene Windows por defecto. Además, puedes obtener el día +actual, número de semana, así como los días restantes para que acabe el año +en curso, y también puedes establecer el anuncio automático de la hora tras +un intervalo dado. También hay funciones de temporizador de alarma y +cronómetro incorporadas en el complemento que te permiten medir tus tareas, +tales como copiar archivos, instalar programas o cocinar comida. + +Notas: + +* si instalas el complemento como una actualización, durante el proceso de + instalación, el asistente detecta si la configuración anterior es + compatible con la nueva y ofrece corregirla antes de instalar. Simplemente + debes validar con el botón Aceptar para confirmar. +* En Windows 10 o posterior, puedes usar la aplicación Reloj y alarmas para + gestionar cronómetros y temporizadores. + +## Teclas de órdenes + +* NVDA+f12: obtiene la hora actual +* NVDA+f12 pulsado dos veces rápidamente: obtiene la fecha actual +* NVDA+F12 pulsado tres veces rápidamente: anuncia el número de día, número + de semana, el año actual y los días que faltan hasta fin de año +* NVDA+shift+f12: entra en la capa del reloj + +## Órdenes sin asignar + +Las siguientes órdenes vienen sin asignar por defecto; si quieres +asignarlas, utiliza el diálogo Gestos de entrada para añadir órdenes +personalizadas. Para ello, abre el menú NVDA, Preferencias, y luego Gestos +de entrada. Expande la categoría Reloj, encuentra las órdenes sin asignar de +la lista de debajo y selecciona "Añadir". Finalmente, teclea el gesto que te +gustaría utilizar. + +* Tiempo transcurrido y restante antes de la próxima alarma. Al pulsar dos + veces rápidamente este gesto, se cancelará la alarma. +* Detener sonido de la alarma actual en reproducción. +* Mostrar cuadro de diálogo para programar alarmas. + +## Órdenes de capa + +Para usar las órdenes en capa, pulsa NVDA+Shift+F12 seguido de una de las +siguientes teclas: + +* S: inicia, detiene o reinicia el cronómetro +* R: pone el cronómetro a 0 sin reiniciarlo +* A: da el tiempo transcurrido y el tiempo restante antes de la próxima + alarma +* T: abre el diálogo de programación de alarmas. +* C: cancela la próxima alarma +* Espacio: verbaliza el cronómetro o la cuenta atrás actual +* p: si una alarma es demasiado larga, permite pararla +* H: lista todas las órdenes de capa (Ayuda) + +## Configuración y uso + +Para configurar la funcionalidad del reloj, abre el menú de NVDA, +Preferencias, Opciones, y configura las siguientes opciones desde el panel +Reloj: + +* Formato de visualización de fecha y hora: usa estos cuadros combinados + para configurar cómo anunciará NVDA la hora y la fecha al pulsar NVDA+f12 + una o dos veces rápidamente, respectivamente. +* Intervalo: elige el intervalo de anuncio de hora desde este cuadro + combinado (apagado, cada 10 minutos, 15 minutos, 30 minutos, o cada hora). +* Anuncio de hora (habilitado si el intervalo no está apagado): elige entre + voz y sonido, sólo sonido o sólo voz. +* Sonido de campana del reloj (habilitado si el intervalo no está apagado): + selecciona el sonido de la campana. +* Horas silenciosas (habilitada si el intervalo no está apagado): selecciona + esta casilla para configurar el intervalo de horas silenciosas en el que + no debería producirse el anuncio automático de hora. +* Formato de hora para las horas silenciosas (activado si las horas + silenciosas están activadas): selecciona cómo se presentan las opciones de + las horas silenciosas (formatos de 12 o 24 horas). +* Horas de inicio y fin de las horas silenciosas: selecciona el intervalo de + horas y minutos de las horas silenciosas desde los cuadros combinados de + horas y minutos. + +Para programar alarmas, abre el menú de NVDA, Herramientas, Programar +alarmas. Los contenidos del diálogo incluyen: + +* Duración de la alarma en: selecciona la duración de la alarma o el + temporizador entre horas, minutos y segundos. +* Duración: introduce la duración de la alarma en la unidad indicada + anteriormente. +* Sonido de alarma: elige el sonido de alarma que se reproducirá. +* Botones detener y pausar: detener o pausar un sonido de alarma largo. + +Pulsa Aceptar, y un mensaje te informará la duración de la alarma +seleccionada actualmente. + +[[!tag stable]] + +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/es_CO/readme.md b/addon/doc/es_CO/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/es_CO/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/et/readme.md b/addon/doc/et/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/et/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/fa/readme.md b/addon/doc/fa/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/fa/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/fi/readme.md b/addon/doc/fi/readme.md index 09353c8..28bc23c 100644 --- a/addon/doc/fi/readme.md +++ b/addon/doc/fi/readme.md @@ -1,71 +1,107 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +# Kello ja kalenteri # + +* Tekijät: Hrvoje Katić, Abdel sekä muut NVDA-yhteisön jäsenet +* Lataa [vakaa versio][1] + +* Yhteensopivuus: NVDA 2019.3 ja uudemmat + +Tämä lisäosa lisää NVDA:han edistyneen kellon, ajastimen sekä kalenterin. + +Voit määrittää NVDA:n ilmoittamaan kellonajan ja päivämäärän muissa kuin +Windowsin oletusarvoisesti tarjoamissa muodoissa. Lisäksi voit saada +selville nykyisen päivän, viikon numeron sekä kuluvan vuoden jäljellä olevat +päivät, ja voit myös ottaa käyttöön tietyin väliajoin tapahtuvan +automaattisen kellonajan ilmoittamisen. Lisäosaan on sisäänrakennettu myös +sekuntikello ja ajastin, jonka avulla voit mitata tehtäviesi, kuten +tiedostojen kopioinnin, ohjelmien asentamisen tai aterioiden valmistuksen, +keston. + +Huomautuksia + +* Mikäli asennat lisäosan päivityksenä, ohjattu asennustoiminto tunnistaa, + ovatko vanhat asetuksesi yhteensopivia uuden lisäosaversion kanssa ja + ehdottaa tarvittaessa niiden korjaamista ennen asennusta, minkä voit + hyväksyä painamalla OK-painiketta. +* Windows 10:ssä ja uudemmissa voit käyttää sekuntikelloa ja ajastinta + Hälytykset ja kello -sovelluksella. + +## Näppäinkomennot + +* NVDA+F12: Puhu nykyinen kellonaika +* NVDA+F12 kahdesti painettuna: Puhu nykyinen päivämäärä +* NVDA+F12 kolmesti painettuna: Ilmoittaa nykyisen päivän, viikon numeron, + kuluvan vuoden sekä sen jäljellä olevat päivät +* NVDA+Vaihto+F12: ota käyttöön kellon komentokerros + +## Määrittämättömät komennot + +Seuraavia komentoja ei ole oletusarvoisesti määritetty. Mikäli haluat +määrittää ne, käytä Näppäinkomennot-valintaikkunaa haluamiesi komentojen +lisäämiseen. Tämä tehdään avaamalla NVDA-valikko ja valitsemalla sitten +Asetukset-alivalikosta Näppäinkomennot. Laajenna Kello-kategoria, etsi +määrittämättömät komennot alla olevasta luettelosta, valitse "Lisää" ja +paina sitten näppäinkomentoa, jota haluat käyttää. + +* Kulunut ja jäljellä oleva aika ennen seuraavaa hälytystä. Tämän + näppäinkomennon kahdesti painaminen peruuttaa seuraavan hälytyksen. +* Pysäytä tällä hetkellä soiva hälytysääni. +* Näytä hälytysten ajastusvalintaikkuna. + +## Komentokerroksen komennot + +Käytä komentokerroskomentoja painamalla NVDA+Vaihto+F12 ja sitten jotakin +seuraavista näppäimistä: + +* S: Käynnistää, nollaa tai pysäyttää sekuntikellon +* R: Nollaa sekuntikellon uudelleenkäynnistämättä sitä +* A: Puhuu kuluneen ja jäljellä olevan ajan ennen seuraavaa hälytystä +* T: Avaa hälytysten ajoitusvalintaikkunan +* C: Peruuta seuraava hälytys +* Välilyönti: Puhuu nykyisen sekuntikellon tai ajastimen +* P: Lopettaa hälytyksen, mikäli se kestää liian kauan +* H: Luetteloi kaikki komentokerroksen komennot + +## Määrittäminen ja käyttö + +Määritä kello siirtymällä NVDA-valikkoon, avaamalla Asetukset-alivalikko, +valitsemalla Asetukset ja määrittämällä seuraavat asetukset +Kello-paneelista: + +* Kellonajan ja päivämäärän näyttömuoto: Määritä näistä yhdistelmäruuduista, + miten NVDA puhuu kellonajan ja päivämäärän painaessasi kerran tai kahdesti + NVDA+F12. +* Kellonajan ilmoitus: Valitse tästä yhdistelmäruudusta kellonajan + ilmoittamisen aikaväli (pois käytöstä, 10 minuutin välein, 15 minuutin + välein, 30 minuutin välein tai tunnin välein). +* Kellonajan ilmoittaminen (käytössä, mikäli kellonajan ilmoituksen + aikaväliksi ei ole määritetty "pois käytöstä"): Valitse vaihtoehtojen + "puheella ja äänellä", "vain äänellä" tai "vain puheella" väliltä. +* Kellon ääni (käytössä, mikäli kellonajan ilmoituksen aikaväliksi ei ole + määritetty "pois käytöstä"): Valitse kellon ääni. +* Hiljaiset tunnit (käytössä, mikäli kellonajan ilmoituksen aikaväliksi ei + ole määritetty "pois käytöstä"): Valitse tämä valintaruutu määrittääksesi + hiljaiset tunnit, joiden aikana automaattinen kellonajan puhuminen ei ole + käytössä. +* Hiljaisten tuntien ajan muoto (käytössä, mikäli hiljaiset tunnit ovat + käytössä): Valitse, miten hiljaisten tuntien vaihtoehdot näytetään (12 + tunnin tai 24 tunnin muoto). +* Hiljaisten tuntien alkamis- ja päättymisajat: Valitse tunnit- ja + minuutit-yhdistelmäruuduista hiljaisten tuntien alkamis- ja päättymisaika. + +Ajasta hälytyksiä menemällä NVDA-valikkoon, Avaamalla Työkalut-alivalikon ja +valitsemalla sitten Ajasta hälytyksiä. Valintaikkunassa ovat käytettävissä +seuraavat vaihtoehdot: + +* Hälytyksen keston yksikkö: Valitse hälytyksen/ajastimen kesto tuntien, + minuuttien ja sekuntien väliltä. +* Kesto: Anna hälytyksen kesto yllä mainitussa yksikössä. +* Hälytysääni: Valitse soitettava hälytysääni. +* Lopeta- ja pysäytä-painikkeet: Lopeta tai pysäytä pitkän hälytysäänen + soittaminen. + +Paina OK, jonka jälkeen näytetään nykyisen hälytyksen keston kertova +ilmoitus. + +[[!tag stable]] + +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/fr/readme.md b/addon/doc/fr/readme.md index 09353c8..81215e4 100644 --- a/addon/doc/fr/readme.md +++ b/addon/doc/fr/readme.md @@ -1,71 +1,108 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +# Extension horloge et calendrier pour NVDA # + +* Auteurs : Hrvoje Katić, Abdel et contributeurs de NVDA +* Télécharger [version stable][1] + +* Compatibilité NVDA : 2019.3 et ultérieure + +Cette extension active les fonctions avancées de l'horloge, de minuterie +d'alarme et du calendrier pour NVDA. + +Vous pouvez configurer comment les dates et les heures doivent être +annoncées par NVDA au lieu de toujours obtenir la date et l'heure fournit +par défaut depuis Windows. En outre, vous pouvez obtenir le nombre actuel +des jours et semaines de l'année en cours et vous pouvez également définir +l'annonce automatique de l'heure sur un intervalle spécifié. Il y a aussi +des fonctionnalités pour le chronomètre et minuterie d'alarme intégrés à +l'extension, qui vous permet de chronométrer vos tâches, telles que la copie +de fichiers, l'installation de programmes ou la préparation de repas + +Note: + +* Si vous installez l'extension en tant que mise à jour, lors du processus + d'installation, l'assistant détecte si l'ancienne configuration est + compatible avec la nouvelle et vous propose de la corriger avant + l'installation. Il vous suffira alors de valider le bouton OK pour + confirmer cela. +* Sous Windows 10 et ultérieure, vous pouvez utiliser des alarmes et une + application pour l'horloge pour gérer les chronomètres et les minuteries. + +## Raccourcis clavier + +* NVDA+F12: obtenir l'heure actuelle +* NVDA+F12 pressé deux fois rapidement: obtenir la date actuelle +* NVDA+F12 pressé trois fois rapidement: annoncer le jour actuel, le numéro + de la semaine, l'année en cours et les jours qui restent avant la fin de + l'année. +* NVDA+Maj+F12: Entrée séquentielle de l'horloge + +## Commandes non assignées + +Les commandes suivantes ne sont assignées par défaut; Si vous souhaitez +assigner un geste personnalisé vous pouvez ajouter un en utilisant la boîte +de dialogue Gestes de Commandes. Pour ce faire, ouvrez le menu NVDA, +Préférences, puis Gestes de Commandes. Développé la catégorie Horloge, puis +localisez les commandes non assignées dans la liste ci-dessous et +sélectionnez "Ajouter", puis entrez le geste que vous souhaitez utiliser. + +* Temps écoulé et temps restant avant la prochaine alarme. Appuyer deux fois + rapidement sur ce geste annulera rapidement la prochaine alarme. +* Arrête de jouer le son de l'alarme actuelle. +* Afficher la boîte de dialogue Programmer des alarmes. + +## Commandes séquentielles + +Pour utiliser des commandes séquentielles, appuyez sur NVDA+Maj+F12 suivi de +l'une des touches suivantes : + +* S: Démarre, réinitialise ou arrête le chronomètre; +* R: Réinitialise le chronomètre à 0 sans le démarrer; +* A: donne le temps écoulé et restant avant la prochaine alarme; +* T: Ouvre la boîte de dialogue Programmer des alarmes. +* C: Annule la prochaine alarme; +* Espace: Annonce le chronomètre actuel ou le compte à rebours de la + minuterie; +* p: Si une alarme est trop longue, permet de l'arrêter; +* H: Répertorie toutes les commandes séquentielles (Aide). + +## Configuration et utilisation + +Pour configurer la fonctionnalité de l'horloge, ouvrez le menu NVDA, +Préférences, puis Paramètres et configurer les options suivantes à partir du +panneau Horloge: + +* Format d'affichage de l'heure: Utilisez ces zones de liste déroulante pour + configurer comment NVDA annoncera l'heure et la date lorsque vous appuyez + une fois ou deux fois rapidement sur NVDA+F12, respectivement. +* Intervalle: Choisissez l'intervalle de l'annonce de l'heure de cette Zone + de liste déroulante (désactivé, toutes les 10 minutes, 15 minutes, 30 + minutes ou toutes les heures). +* Annonce de l'heure (activée si l'intervalle n'est pas désactivée): + Choisissez entre message et son, message seulement ou son seulement. +* Son de carillon d'horloge (activée si l'intervalle n'est pas désactivée): + Sélectionnez le son de carillon d'horloge. +* Heures silencieuses (activée si l'intervalle n'est pas désactivée): + Sélectionnez cette case à cocher pour configurer l'intervalle de temps + dans laquelle l'annonce automatique ne doit pas se produire. +* Format des heures silencieuses (activée si les heures silencieuses est + activée): Sélectionnez la manière dont les options des heures silencieuses + sont présentées (au format 12 heures ou 24 heures). +* Début et fin de la durée des heures silencieuses: Sélectionnez + l'intervalle d'heure ou minute pour les heures silencieuses à partir des + zones de liste déroulante heures et minutes. + +Pour planifier les alarmes, ouvrez le menu NVDA, Outils, puis sélectionnez +Planifier les alarmes. Le contenu de la boîte de dialogue comprend: + +* Durée de l'alarme en: Sélectionnez la durée de l'alarme / minuterie entre + heures, minutes et secondes. +* Durée: Entrez la durée de l'alarme dans l'unité spécifiée ci-dessus. +* Son de l'alarme: Sélectionnez le son de l'alarme à jouer. +* Les boutons Arrêter ou Pause: Arrête ou met en pause un son d'alarme long. + +Cliquez sur OK, et un message vous informera de la durée de l'alarme +actuellement sélectionnée. + +[[!tag stable]] + +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/ga/readme.md b/addon/doc/ga/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/ga/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/gl/readme.md b/addon/doc/gl/readme.md index 09353c8..ea7cfa8 100644 --- a/addon/doc/gl/readme.md +++ b/addon/doc/gl/readme.md @@ -1,71 +1,105 @@ -# Clock and calendar Add-on for NVDA # +# Complemento de Reloxo e calendario para NVDA # * Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +* Descargar [versión estable][1] + +* Compatibilidade con NVDA: 2019.3 en diante + +Este complemento habilita a funcionalidade avanzada de reloxo, temporizador +con alarma e calendario para NVDA. + +Podes configurar NVDA para anunciar hora e data en formatos distintos dos +que fornece Windows por defecto. Adicionalmente, podes obter o día actual, o +número de semana, así como os días restantes ata o final do ano actual, e +tamén podes configurar o anuncio automático da hora no intervalo +especificado. Tamén hai características de cronómetro e temporizador con +alarma integradas no complemento que che permiten cronometrar as túas +tarefas, como a copia de arquivos, a instlaación de programas ou o cociñado +de alimentos. + +Notas: + +* se instalas o complemento como unha actualización, durante o proceso de + instalación, o asistente detecta se a configuración vella é compatible coa + nova e ofrece corrixila antes da instalación, de forma que só tes que + validar o botón Aceptar para confirmalo. +* En Windows 10 e posterior, podes utilizar a aplicación Alarmas e Reloxo + para administrar cronómetro e temporizadores. + +## Teclas de ordes + +* NVDA+F12: obter hora actual +* NVDA+F12 pulsado dúas veces rapidamente: obter data actual +* NVDA+F12 premida tres veces rapidamente: obtén o número de día, o número + de semana, o ano actual e o número de días restante ata o final do ano +* NVDA+Shift+F12: entrar na capa do reloxo + +## Ordes non asignadas + +As seguintes ordes están sen asignar por defecto; se desexas asignalas, +utiliza o diálogo de Xestos de Entrada para engadir ordes +persoalizadas. Para facelo, abre o menú NVDA, Preferencias, logo Xestos de +Entrada. Expande a categoría Clock, despois localiza ordes sen asignar da +lista inferior e selecciona "Engadir", logo escribe o xesto que queiras +utilizar. + +* Tempo transcorrido e restante antes da seguinte alarma. Premer este xesto + dúas veces rapidamente cancelará a seguinte alarma. +* Deter son de alarma en reprodución. +* Amosar a caixa de diálogo de programación de alarmas. + +## Ordes en capa + +Para utilizar as ordes en capa, preme NVDA+Shift+F12 seguido dunha das +seguintes teclas: + +* S: Inicia, detén ou reinicia o cronómetro +* R: Restablece o cronómetro a 0 sen reinicialo +* A: Fornece o tempo transcorrido e restante ata a vindeira alarma +* T: abre o diálogo de programación de alarmas. +* C: Cancelar a vindeira alarma +* Espazo: Anuncia o temporizador actual do cronómetro ou da conta atrás +* p: Se unha alarma é demasiado longa, permite detela +* H: Listar tódolos comandos en capa (Help=Axuda) + +## Configuración e uso + +Para configurar a funcionalidade de reloxo, abre o menú de NVDA, +Preferencias, logo Opcions, e configura as seguintes opcións dende o panel +de Clock: + +* Formato de amosado de hora e data: utiliza estes cadros combinados para + configurar como anunciará NVDA a hora e a data cando premas NVDA+F12 unha + vez ou dúas veces rapidamente, respectivamente. +* Intervalo: escolle o intervalo de anunciado da hora neste cadro combinado + (desactivado, cada 10 minutos, 15 minutos, 30 minutos, ou cada hora). +* Anuncio da hora (dispoñible se o intervalo non está desactivado): escolle + entre fala e son, só son ou só fala. +* Son de campá do reloxo (dispoñible se intervalo non está desactivado): + selecciona o son da campá do reloxo. +* Horas caladas (dispoñible se o intervalo non está desactivado): selecciona + esta caixa de verificación para configurar un rango de horas caladas onde + non debería anunciarse a hora automaticamente. +* Formato de hora das horas caladas (dispoñible se as horas caladas están + activadas): selecciona como se presentan as opcións das horas caladas + (formato de 12 ou 24 horas). +* Horas de inicio e finalización das horas caladas: selecciona o rango de + hora e minuto para as horas caladas nos cadros combinados de horas e + minutos. + +Para programar alarmas, abre o menú de NVDA; Ferramentas, logo selecciona +Programar alarmas. Os contidos do diálogo inclúen: + +* Duración da alarma en: selecciona a duración da alarma/temporizador en + horas, minutos, e segundos. +* Duración: introduce a duración da alarma na unidade especificada + anteriormente. +* Son de alarma: selecciona o son de alarma a reproducir. +* Botóns deter e pausa: deter ou pausar un son de alarma longo. + +Faga click en OK, e un diálogo informarate da duración de alarma actualmente +seleccionada. + +[[!tag stable]] + +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/he/readme.md b/addon/doc/he/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/he/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/hi/readme.md b/addon/doc/hi/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/hi/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/hr/readme.md b/addon/doc/hr/readme.md index 09353c8..fbdfe27 100644 --- a/addon/doc/hr/readme.md +++ b/addon/doc/hr/readme.md @@ -1,71 +1,99 @@ -# Clock and calendar Add-on for NVDA # +# Sat i kalendar, dodatak za NVDA # -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later +* Autori: Hrvoje Katić, Abdel i NVDA doprinositelji +* Preuzmi [stabilnu verziju][1] -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. +* NVDA kompatibilnost: 2019.3 i novije verzije -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. +Ovaj dodatak omogućuje funkcionalnosti za napredni sat, postavljanje alarma +i kalendar za NVDA. -Notes: +You can configure NvDA to announce time and date in formats other than what +Windows provides by default. Additionally, you can obtain the current day, +week number, as well as the remaining days before the end of the current +year, and you can also set automatic time announcement on specified +interval. There's also a stopwatch and Alarm timer features built-in to the +add-on that lets you time your tasks, such as copying files, installing +programs, or cooking meals. -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. +Napomene: -## Key commands +* ako se dodatak instalira kao nadogradnja, tijekom instalacije čarobnjak + otkriva je li stara konfiguracija kompatibilna s novom i nudi mogućnost za + njeno ispravljanja prije instalacije. To se jednostavno potvrđuje gumbom + „U redu”. +* U sustavu Windows 10 i novijim, možeš koristiti aplikaciju Alarmi i sat za + upravljanje štopericom i mjeračima vremena. -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer +## Tipkovničke naredbe -## Unassigned commands +* NVDA+F12: saznaj trenutačno vrijeme +* Pritisni NVDA+F12 dvaput brzo: saznaj trenutačni datum +* Pritisni NVDA+F12 triput brzo: izvještava o trenutačnom danu, broju + tjedna, tekućoj godini i o danima koji su preostali do kraja godine +* NVDA+Shift+F12: uđi u sloj sata -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. +## Nedodijeljene naredbe -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). +The following commands are not assigned by default; if you wish to assign +them, use Input Gestures dialog to add custom commands. To do so, open NVDA +menu, Preferences, then Input Gestures. Expand Clock category, then locate +unassigned commands from the list below and select "Add", then enter the +gesture you wish to use. -## Layered commands +* Elapsed and remaining time before the next alarm. pressing this gesture + twice quickly will cancel the next alarm. +* Zaustavi trenutačnu reprodukciju zvuka alarma. +* Prikaži dijaloški okvir zakazanih alarma. -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: +## Višeslojne naredbe -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) +Za korištenje višeslojnih naredbi, pritisni NVDA+šift+F12 i zatim jednu od +sljedećih tipki: -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: +* S: Pokreće, resetira ili zaustavlja štopericu +* R: Resetira štopericu na nulu bez ponovnog pokretanja +* A: Izdaje proteklo vrijeme i preostalo vrijeme prije sljedećeg alarma +* T: Otvara dijalog za zakazivanje alarma. +* C: Otkaži sljedeći alarm +* Razmaknica: Izgovara trenutačno stanje štoperice ili odbrojavanja vremena +* p: Ako alarm traje predugo, može ga se zaustaviti +* H: Popis svih višeslojnih prečaca (Pomoć) -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: +## Configuration and usage -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. +To configure clock functionality, open NvDA menu, Preferences, then +Settings, and configure the following options from Clock panel: + +* Time and date display format: use these combo boxes to configure how NVDA + will announce time and date when you press NVDA+F12 once or twice quickly, + respectively. +* Interval: choose the time announcement interval from this combo box (off, + every 10 minutes, 15 minutes, 30 minutes, or every hour). +* Time announcement (enabled if interval is not off): choose between speech + and sound, sound only, or speech only. +* Clock chime sound (enabled if interval is not off): select the clock chime + sound. +* „Sati mirovanja” (uključeno ako interval nije isključen): odaberi ovaj + potvrdni okvir za konfiguriranje vremenskog raspona sata mirovanja u kojem + se automatska najava vremena ne primijenjuje. +* Quiet hours time format (enabled if quiet hours is enabled): select how + quiet hours options are presented (12-hour or 24-hour format). +* Quiet hours start and end times: select hour and minute range for quiet + hours from hours and minutes combo boxes. + +To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The +dialog contents include: + +* Alarm duration in: select alarm/timer duration between hours, minutes, and + seconds. * Duration: enter alarm duration in the unit specified above. * Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. +* Gumbovi „Prekid” i „Pauza”: prekini ili pauziraj duge alarme. -Click OK, and a message will inform you the curretnly selected alarm duration. +Pritisni U redu i poruka će te obavijestiti o trenutačno odabranom trajanju +alarma. -[1]: https://addons.nvda-project.org/files/get.php?file=cac +[[!tag stable]] -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/hu/readme.md b/addon/doc/hu/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/hu/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/id/readme.md b/addon/doc/id/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/id/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/is/readme.md b/addon/doc/is/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/is/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/it/readme.md b/addon/doc/it/readme.md index 09353c8..a97e637 100644 --- a/addon/doc/it/readme.md +++ b/addon/doc/it/readme.md @@ -1,71 +1,100 @@ -# Clock and calendar Add-on for NVDA # +# Clock: impostazioni avanzate per l'ora ed il calendario con NVDA # * Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. +* Scarica la [versione stabile][1] -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: +* NVDA compatibility: 2019.3 and later -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. +Questo componente aggiuntivo presenta impostazioni avanzate per l'orologio, +il calendario e funzioni di timer e cronometro per NVDA. + +Permette a NVDA di gestire le funzionalità avanzate di orologio e +calendario. Invece di ottenere l'orario e la data sempre da Windows, è +possibile personalizzare la modalità con cui orario e data debbano essere +annunciate sia con la sintesi che in braille. Inoltre, è possibile sapere il +giorno corrente e il numero della settimana dell'anno in corso, ed è anche +possibile impostare degli annunci automatici ad un intervallo di tempo +specifico. + +Nota: + +* se si sta aggiornando il componente aggiuntivo, durante il processo di + installazione la procedura guidata rileva se la vecchia configurazione è + compatibile con la nuova e propone la correzione. Sarà sufficiente premere + il pulsante Ok per confermare. +* Su Windows 10 e versioni successive, puoi utilizzare l'app Sveglie e + Orologio per gestire cronometro e timer. + +## Comandi rapidi + +* NVDA+F12, legge l'ora; +* NVDA+F12 premuto due volte, legge la data; +* NVDA+F12 premuto tre volte rapidamente, informa sul numero del giorno, + della settimana e i giorni restanti rispetto all'anno in corso. +* NVDA+Shift+F12: attiva i comandi a livello. + +## Comandi non assegnati: + +The following commands are not assigned by default; if you wish to assign +them, use Input Gestures dialog to add custom commands. To do so, open NVDA +menu, Preferences, then Input Gestures. Expand Clock category, then locate +unassigned commands from the list below and select "Add", then enter the +gesture you wish to use. + +* Tempo trascorso e tempo rimanente prima dell'allarme successivo. premendo + questo comando due volte rapidamente si annullerà l'allarme successivo. +* Interrompi la riproduzione del suono dell'allarme. +* Visualizza la finestra di dialogo degli allarmi programmati. + +## comandi a livello: + +Per usare i comandi a livello, premere NVDA+Shift+F12 e poi uno dei seguenti +tasti: + +* S: Avvia, interrompe o azzera per riavviare il cronometro. +* R: Azzera il cronometro senza ripartire. +* A: annuncia il tempo restante e trascorso per il timer; +* T: apre la finestra di dialogo degli allarmi programmati. +* C: Annulla il Timer impostato. +* BarraSpaziatrice: Legge il tempo trascorso nel cronometro. +* P: interrompe il suono del timer; +* H: elenca i comandi a livello disponibili. + +## Configurazione e utilizzo + +Per configurare la funzionalità dell'orologio, apri il menu NvDA, +Preferenze, quindi Impostazioni e configura le seguenti opzioni dal pannello +Orologio: + +* Formato di visualizzazione dell'ora e della data: usa queste caselle + combinate per configurare come NVDA annuncerà l'ora e la data quando premi + NVDA+F12 una o due volte velocemente, rispettivamente. +* Intervallo: scegli l'intervallo di tempo dell'annuncio da questa casella + combinata (off, ogni 10 minuti, 15 minuti, 30 minuti o ogni ora). +* Time announcement (enabled if interval is not off): choose between speech + and sound, sound only, or speech only. +* Clock chime sound (enabled if interval is not off): select the clock chime + sound. +* Quiet hours (enabled if interval is not off): select this checkbox to + configure quiet hours range when automatic time announcement should not + occur. +* Quiet hours time format (enabled if quiet hours is enabled): select how + quiet hours options are presented (12-hour or 24-hour format). +* Quiet hours start and end times: select hour and minute range for quiet + hours from hours and minutes combo boxes. + +To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The +dialog contents include: + +* Alarm duration in: select alarm/timer duration between hours, minutes, and + seconds. * Duration: enter alarm duration in the unit specified above. * Alarm sound: select the alarm sound to be played. * Stop and pause buttons: stop or pause a long alarm sound. -Click OK, and a message will inform you the curretnly selected alarm duration. +Click OK, and a message will inform you the curretnly selected alarm +duration. -[1]: https://addons.nvda-project.org/files/get.php?file=cac +[[!tag stable]] -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/ja/readme.md b/addon/doc/ja/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/ja/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/ka/readme.md b/addon/doc/ka/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/ka/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/km/readme.md b/addon/doc/km/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/km/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/kmr/readme.md b/addon/doc/kmr/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/kmr/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/kn/readme.md b/addon/doc/kn/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/kn/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/ko/readme.md b/addon/doc/ko/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/ko/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/ky/readme.md b/addon/doc/ky/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/ky/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/lt/readme.md b/addon/doc/lt/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/lt/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/mk/readme.md b/addon/doc/mk/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/mk/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/mn/readme.md b/addon/doc/mn/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/mn/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/my/readme.md b/addon/doc/my/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/my/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/nb_NO/readme.md b/addon/doc/nb_NO/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/nb_NO/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/ne/readme.md b/addon/doc/ne/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/ne/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/nl/readme.md b/addon/doc/nl/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/nl/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/nn_NO/readme.md b/addon/doc/nn_NO/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/nn_NO/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/pa/readme.md b/addon/doc/pa/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/pa/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/pl/readme.md b/addon/doc/pl/readme.md index 09353c8..c238ed5 100644 --- a/addon/doc/pl/readme.md +++ b/addon/doc/pl/readme.md @@ -1,71 +1,103 @@ # Clock and calendar Add-on for NVDA # * Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +* Pobierz [wersja stabilna][1] + +* Zgodność z NVDA: 2019.3 i nowsze + +Ten dodatek umożliwia zaawansowane funkcje zegara, timera alarmowego i +kalendarza dla NVDA. + +NvDA można skonfigurować tak, aby ogłaszała godzinę i datę w formatach +innych niż domyślnie dostępne w systemie Windows. Dodatkowo można uzyskać +bieżący dzień, numer tygodnia, a także pozostałe dni przed końcem bieżącego +roku, a także ustawić automatyczne ogłaszanie czasu w określonym +interwale. W dodatku wbudowane są również funkcje stopera i timera alarmów, +które pozwalają zaplanować zadania, takie jak kopiowanie plików, +instalowanie programów lub gotowanie posiłków. + +Uwagi: + +* jeśli zainstalujesz dodatek jako aktualizację, podczas procesu instalacji + kreator wykryje, czy stara konfiguracja jest zgodna z nową i zaoferuje jej + poprawienie przed instalacją, musisz tylko sprawdzić poprawność przycisku + OK, aby to potwierdzić. +* W systemie Windows 10 lub nowszym możesz używać aplikacji Alarmy i zegar + do zarządzania stoperami i timerami. + +## Skróty klawiszowe + +* NVDA+F12: pobierz aktualny czas +* NVDA+F12 dwukrotnie szybko wciśnięty: pobierz bieżącą datę +* NVDA+F12 naciskana trzy razy szybko: raportuje bieżący dzień, numer + tygodnia, bieżący rok i pozostałe dni przed końcem roku +* NVDA+Shift+F12: wejdź w warstwę zegara + +## Nieprzypisane polecenia + +Następujące polecenia nie są domyślnie przypisywane; Jeśli chcesz je +przypisać, użyj okna dialogowego Gesty wprowadzania, aby dodać +niestandardowe polecenia. Aby to zrobić, otwórz menu NVDA, Preferencje, a +następnie Gesty wprowadzania. Rozwiń kategorię Zegar, a następnie znajdź +nieprzypisane polecenia z poniższej listy i wybierz "Dodaj", a następnie +wprowadź gest, którego chcesz użyć. + +* Upłynął i pozostały czas przed kolejnym alarmem. dwukrotne naciśnięcie + tego gestu spowoduje anulowanie następnego alarmu. +* Zatrzymaj aktualnie odtwarzanie dźwięku alarmu. +* Wyświetl okno dialogowe Zaplanuj alarmy. + +## Polecenia warstwowe + +Aby używać poleceń warstwowych, naciśnij NVDA+Shift+F12, a następnie 1 z +poniższych klawiszy: + +* S: Uruchamia, resetuje lub zatrzymuje stoper +* R: Resetuje stoper do 0 bez ponownego uruchamiania +* Odp .: podaje czas, który upłynął i pozostały do następnego alarmu +* T: otwiera okno dialogowe zaplanuj alarmy. +* C: Anuluj następny alarm +* Spacja: Wypowiada bieżący stoper lub minutnik +* p: Jeśli alarm jest zbyt długi, pozwala go zatrzymać +* H: Lista wszystkich poleceń warstwowych (Pomoc) + +## Konfiguracja i użytkowanie + +Aby skonfigurować funkcjonalność zegara, otwórz menu NvDA, Preferencje, a +następnie Ustawienia i skonfiguruj następujące opcje z panelu Zegar: + +* Format wyświetlania godziny i daty: użyj tych pól kombi, aby skonfigurować + sposób, w jaki NVDA będzie ogłaszać godzinę i datę po naciśnięciu NVDA + + F12 odpowiednio raz lub dwa razy. +* Interwał: wybierz interwał ogłaszania czasu z tego pola kombi (wyłączone, + co 10 minut, 15 minut, 30 minut lub co godzinę). +* Zapowiedź czasu (włączona, jeśli interwał nie jest wyłączony): wybierz + między mową a dźwiękiem, tylko dźwiękiem lub tylko mową. +* Dźwięk dzwonka zegara (włączony, jeśli interwał nie jest wyłączony): + wybierz dźwięk dzwonka zegara. +* Godziny ciszy (włączone, jeśli interwał nie jest wyłączony): zaznacz to + pole wyboru, aby skonfigurować zakres godzin ciszy, w których automatyczne + ogłaszanie czasu nie powinno mieć miejsca. +* Format czasu ciszy w godzinach pracy (włączony, jeśli włączone są godziny + ciszy): wybierz sposób wyświetlania opcji godzin ciszy (format 12-godzinny + lub 24-godzinny). +* Godziny ciszy rozpoczynają i kończą: wybierz zakres godzin i minut dla pól + kombi godziny i minut ciszy z godzin i minut. + +Aby zaplanować alarmy, otwórz menu NVDA, Narzędzia, a następnie wybierz +Zaplanuj alarmy. Zawartość okna dialogowego obejmuje: + +* Czas trwania alarmu w: wybierz czas trwania alarmu/timera między + godzinami, minutami i sekundami. +* Czas trwania: wprowadź czas trwania alarmu w urządzeniu określonym + powyżej. +* Dźwięk alarmu: wybierz dźwięk alarmu, który ma być odtwarzany. +* Przyciski zatrzymania i wstrzymania: zatrzymaj lub wstrzymaj długi dźwięk + alarmu. + +Kliknij przycisk OK, a pojawi się komunikat informujący o wybranym czasie +trwania alarmu. + +[[!tag stable]] + +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/pt_BR/readme.md b/addon/doc/pt_BR/readme.md index 09353c8..c42e26a 100644 --- a/addon/doc/pt_BR/readme.md +++ b/addon/doc/pt_BR/readme.md @@ -1,71 +1,103 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +# Complemento de relógio e calendário para o NVDA (Clock and calendar Add-on for NVDA) # + +* Autores: Hrvoje Katić, Abdel e colaboradores do NVDA +* Baixe a [versão estável][1] + +* Compatibilidade com NVDA: 2019.3 e posteriores + +Este complemento habilita a funcionalidade avançada de relógio, temporizador +com alarme e calendário para o NVDA. + +Você pode configurar o NvDA para anunciar a hora e a data em formatos +diferentes dos fornecidos pelo Windows por padrão. Além disso, pode obter o +dia atual, o número da semana, bem como os dias restantes para o fim do ano +atual, e também pode definir o anúncio automático de hora em um intervalo +especificado. Há também um cronômetro e recursos de temporizador com alarme +integrados ao complemento que permitem cronometrar suas tarefas, como copiar +arquivos, instalar programas ou cozinhar refeições. + +Notas: + +* se instalar uma atualização do complemento, durante o processo de + instalação, o assistente detecta se a configuração antiga é compatível com + a nova e se oferecerá para corrigi-la antes da instalação, basta ratificar + com botão OK para confirmar isso. +* No Windows 10 e posteriores, você pode usar o aplicativo Alarmes e Relógio + para gerenciar o cronômetro e os temporizadores. + +## Comandos principais + +* NVDA+F12: obtém a hora atual +* NVDA+F12 pressionado duas vezes rapidamente: obtém a data atual +* NVDA+F12 pressionado três vezes rapidamente: informa o dia atual, o número + da semana, o ano atual e os dias que faltam para o fim do ano +* NVDA+Shift+F12: entra camada de relógio + +## Comandos não atribuídos + +Os comandos a seguir não são atribuídos por padrão; se desejar atribuí-los, +use o diálogo Definir Comandos — Gestos de Entrada — para adicionar comandos +personalizados. Para fazer isso, abra o menu NVDA, Preferências e Definir +Comandos. Expanda a categoria Relógio, localize os comandos não atribuídos +na lista abaixo e selecione "Adicionar" e insira o comando — gesto — que +deseja usar. + +* Tempo decorrido e restante antes do próximo alarme. pressionar este + comando — gesto — duas vezes rapidamente cancelará o próximo alarme. +* Parar de tocar o som do alarme no momento. +* Exibe a caixa de diálogo agendar alarmes. + +## Comandos em camada + +Para usar os comandos em camada, pressione NVDA+Shift+F12 seguido de uma das +seguintes teclas: + +* S: Inicia, redefine ou pára o cronômetro +* R: Redefine o cronômetro para 0, sem reiniciá-lo +* A: fornece o tempo restante e o decorrido antes do próximo alarme +* T: abre o diálogo de agendamento de alarmes. +* C: Cancela o próximo alarme +* Espaço: Fala o cronômetro atual ou o temporizador de contagem regressiva +* p: Se um alarme for muito longo, permite pará-lo +* H: Lista todos os comandos em camada (Ajuda) + +## Configuração e uso + +Para configurar a funcionalidade do relógio, abra o menu NvDA, Preferências, +Configurações, e configure as seguintes opções no painel Relógio: + +* Formato de exibição de data e hora: use essas caixas de combinação para + configurar como o NVDA anunciará a hora e a data quando você pressionar + NVDA+F12 uma ou duas vezes rapidamente, respectivamente. +* Intervalo: escolha o intervalo do anúncio de horário nesta caixa de + combinação (desligado, a cada 10 minutos, 15 minutos, 30 minutos ou a cada + hora). +* Anúncio de hora (habilitado se o intervalo não estiver desativado): + escolha entre fala e som, somente som ou somente fala. +* Som da badalada do relógio (habilitado se o intervalo não estiver + desativado): selecione o som da badalada do relógio. +* Horas silenciosas (habilitado se o intervalo não estiver desativado): + marque esta caixa de seleção para configurar o intervalo de horas + silenciosas quando o anúncio automático de horário não deve ocorrer. +* Formato de horas silenciosas (habilitado se horas silenciosas estiver + habilitada): selecione como as opções de horário silencioso são + apresentadas (formato de 12 ou 24 horas). +* Horários de início e término de horas silenciosas: selecione o intervalo + de horas e minutos para horários silenciosos a partir das caixas de + combinação de horas e minutos. + +Para agendar alarmes, abra o menu NVDA, Ferramentas e selecione Agendar +Alarmes. O conteúdo da caixa de diálogo inclui: + +* Duração do alarme em: selecione a duração do alarme/cronômetro entre + horas, minutos e segundos. +* Duração: insira a duração do alarme na unidade especificada acima. +* Som do alarme: selecione o som do alarme a ser reproduzido. +* Botões de parar e pausar: parar ou pausar um som de alarme longo. + +Clique em OK e uma mensagem informará a duração do alarme atualmente +selecionado. + +[[!tag stable]] + +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/pt_PT/readme.md b/addon/doc/pt_PT/readme.md index 09353c8..778c891 100644 --- a/addon/doc/pt_PT/readme.md +++ b/addon/doc/pt_PT/readme.md @@ -1,71 +1,102 @@ -# Clock and calendar Add-on for NVDA # +# Extra de Relógio e calendário para o NVDA # * Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). +* Baixar a [versão estável][1] -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac +* NVDA compatibility: 2019.3 and later -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +Este complemento permite a funcionalidade avançada de relógio, temporizador +de alarme e calendário para NVDA. + +Pode configurar o NVDA para anunciar a hora e a data em formatos diferentes +dos que o Windows fornece por defeito. Além disso, pode obter o dia actual, +o número da semana, bem como os dias restantes antes do fim do ano actual, e +também pode definir o anúncio automático da hora num intervalo +especificado. Há também um cronómetro e um temporizador de alarme integrados +no extra que lhe permite cronometrar as suas tarefas, tais como copiar +ficheiros, instalar programas, ou cozinhar refeições. + +Nota: + +* Se instalar uma atualização do extra, durante o processo de instalação, o + assistente detecta se a configuração antiga é compatível com a nova e + pergunta se quer fazer as alterações, que deverá confirmar no botão "ok". +* No Windows 10 e posteriores, pode utilizar a aplicação Alarmes e Relógio + para gerir cronómetros e temporizadores. + +## Comandos rápidos: + +* NVDA+F12, diz a hora actual; +* nvda+f12, pressionado duas vezes, diz a data actual; +* NVDA+F12, pressionado três vezes rapidamente, informa o dia actual, o + número da semana, o ano atual e os dias que faltam para o final do ano. +* NVDA+Shift+F12: entrar nos comandos em camada do relógio + +## Comandos não atribuídos + +Os seguintes comandos não estão atribuídos por defeito; se desejar +atribuí-los, utilize o menu Definir Comandos para adicionar comandos +personalizados. Para o fazer, abra o menu do NVDA, Preferências e depois +Definir Comandos. Expanda a categoria Relógio, depois localize os comandos +não atribuídos na lista abaixo e seleccione "Adicionar", depois introduza o +atalho que deseja utilizar. + +* Tempo ecorrido e tempo restante antes do próximo alarme. Pressionar duas + vezes rapidamente este comando irá cancelar o próximo alarme. +* Parar de tocar o som do alarme corrente. +* Mostra O diálogo de alarmes agendados + +## Comandos em camada: + +Para usar os comandos em camada, pressione NVDA+Shift+F12 seguido de uma das +seguintes teclas: + +* S: Inicia, redefine ou pára o cronómetro; +* R: Redefine o cronómetro para 0, sem o reiniciar; +* A: dá o tempo decorrido e restante antes do próximo alarme +* P: Abre o diálogo de alarmes agendados +* C: Cancelar o próximo alarme +* Espaço: Lê o cronómetro actual ou o cronómetro de contagem regressiva; +* P: Se um alarme for muito longo, permite pará-lo; +* H: Lista todos os comandos em camada (Ajuda). + +## Configuração e utilização + +Para configurar as funcionalidades do relógio, abra o menudo NVDA, +Preferências, depois Definições, e configure as seguintes opções a partir do +painel Relógio: + +* Formato de hora e data: utilize estas caixas combinadas para configurar + como o NVDA anunciará a hora e a data quando premir NVDA+F12 uma ou duas + vezes, respectivamente, rapidamente. +* Intervalo: escolher o intervalo de tempo de anúncio a partir desta caixa + combinada (desligado, a cada 10 minutos, 15 minutos, 30 minutos, ou a cada + hora). +* Anúncio de tempo (activado se o intervalo de tempo não estiver desligado): + escolha entre voz e som, apenas som, ou apenas voz. +* Sinal sonoro do relógio (activado se o intervalo não estiver desligado): + seleccionar o sinal sonoro do relógio. +* Horas silenciosas (activado se o intervalo não estiver desligado): + seleccione esta caixa de verificação para configurar o intervalo de horas + silenciosas quando o anúncio automático da hora não deve ocorrer. +* Formato de horas silenciosas (activado se as horas silenciosas estiverem + activadas): seleccionar como as opções de horas silenciosas são + apresentadas (formato de 12 horas ou 24 horas). +* Início e fim de horas silenciosas: seleccione o intervalo de horas e + minutos para as horas silenciosas a partir das caixas combinadas de horas + e minutos. + +Para agendar alarmes, abra o menu NVDA, Ferramentas, depois seleccione +Agendar Alarmes. O conteúdo do diálogo inclui: + +* Duração do alarme em: seleccionar a duração do alarme/temporizador entre + horas, minutos e segundos. +* Duração: introduzir a duração do alarme na unidade especificada acima. +* Som do alarme: seleccionar o som de alarme a ser tocado. +* Botões de paragem e pausa: parar ou pausar um longo som de alarme. + +Clique OK, e uma mensagem irá informá-lo da duração do alarme seleccionado. + +[[!tag stable]] + +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/ro/readme.md b/addon/doc/ro/readme.md index 09353c8..262ab36 100644 --- a/addon/doc/ro/readme.md +++ b/addon/doc/ro/readme.md @@ -1,71 +1,97 @@ -# Clock and calendar Add-on for NVDA # +# Suplimentul Clock and calendar pentru NVDA # -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later +* Autori: Hrvoje Katić, Abdel și contribuitorii NVDA; +* Descarcă [versiunea stabilă][1]; +* Descarcă [versiunea în dezvoltare][2]. -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. +Acest supliment activează ceasul avansat, alarma și calendarul pentru NVDA. -Notes: +În loc să obțineți mereu data și ora de la Windows, puteți personaliza cum +să fie spuse sau afișate în braille de NVDA. -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. +În plus, puteți obține ziua curentă, numărul săptămânii, dar și câte zile au +mai rămas până la sfârșitul anului curent. Puteți să setați anunțarea +automată a orei într-un interval specificat. -## Key commands +De asemenea, sunt implementate în supliment caracteristicile cronometru și +alarmă, cu ajutorul cărora vă puteți programa activități precum copierea de +fișiere, instalarea de programe sau, de ce nu, luarea micului dejun, a +prânzului, a cinei, sau chiar a unei mici gustări. -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer +## Notă: -## Unassigned commands +Dacă instalați suplimentul ca actualizare, în timpul procesului de +instalare, vrăjitorul vede dacă configurația veche este compatibilă sau nu +cu cea nouă și se oferă să o corecteze înainte de instalare, apoi +dumneavoastră trebuie doar să apăsați butonul OK ca să confirmați această +acțiune. -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. +## Folosire -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). +* Open the configuration dialog for this addon from the NVDA tools menu or from the settings panel According to your version of NVDA; + * In the Clock setup dialog, the first two Combo Box controls allow you to choose your prefered time and date display formats; + * The Combo Box control labeled "Interval" allows you to set the interval for automatic time announcement (Every 10 minutes, Every 15 minutes, Every 30 minutes, Every hour, or Off); + * The Combo Box control labeled "Time announcement" (only visible if the choice "off" is not selected in the interval Combo Box) lets you configure how the automatic time announcement should be reported (Speech and sound, Speech only, or Sound only) when automatic time announcement is working; + * The Combo box control labeled "Clock chime sound" (only visible if the choice "off" is not selected in the interval Combo Box) lets you choose between various clock sounds that will be played when automatic time announcement is working and reported with sound; + * The Checkbox control labeled "Quiet hours" (only visible if the choice "off" is not selected in the interval Combo Box) lets you configure time range when automatic time announcement shouldn't occure; + * The Checkbox control labeled "input in 24-hour format" (only visible if quiet hours are enabled) allows you to configure wether you want to input time for quiet hours in 12-hour (A.M. or P.M.), or european 24-hour format; + * The Edit box controls for start and end time (only visible if quiet hours are enabled) let you configure time range for quiet hours. The time should be entered in HH:MM format if the "input in 24-hour format" checkbox is checked, otherwise you must use a 12 hour format as described below; + * When done, tab to the OK button and activate it by pressing Enter to save your settings; + * In the Alarm setup dialog, the first Combo Box control allow you to choose your prefered countdown timer before the alarm ring; + * The Edit box control lets you type your time waiting before the alarm ring. This duration must be specified in 1 or more digits, not a decimal number; + * The Combo box control labeled "Alarm sound" lets you choose between various alarm sounds that will be played when the alarm time arrives; + * The pause button allows you to pause/resume too long alarms; + * The stop button allows you to stop too long alarms; + * When done, tab to the OK button and activate it by pressing Enter. A message should be displayed to remind you of the waiting time before the alarm; +* Press NVDA+F12 once to get current time, twice to get current date, or thrice to get the current day, week number, as well as the remaining days before the end of the current year. -## Layered commands +## Comenzi de tastatură -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: +- NVDA+F12, spune ora curentă; - NVDA+F12 apăsat de două ori rapid, spune +data curentă; - NVDA+F12 apăsat rapid de trei ori, spune ziua curentă, +numărul sătpămânii dinn an și câte zile mai sunt până la sfârșitul anului. -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) +- There is a script that gives the remaining and elapsed time before the +next alarm; - There is no keyboard gesture assigned to this script, you will +have to do it yourself in the "Input gestures" dialog box, in the "Clock" +category; - This gesture pressed twice quickly, cancel the next alarm; - +There is another script to stop the sound that is currently playing, its +gesture is also not defined; - That script can also be called using the +clock layer commands described below. -## Configuration and usage +## Comenzi stratificate -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: +Pentru a folosi comenzile stratificate, apăsați NVDA+Shift+F12 urmat de una +din următoarele taste: -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. +- S: Starts, resets or stops the stopwatch; - R: Resets stopwatch to 0 +without restarting it; - A: gives the remaining and elapsed time before the +next alarm; - C: Cancel the next alarm; - Space: Speaks current stopwatch or +count-down timer; - p: If an alarm is too long, allows to stop it; - H: List +all layered commands (Help). -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: +## Syntax to use for quiet hours -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. +- To avoid bugs, the quiet hours must follow a rigorous and precise syntax; +- If you check the "Input in 24-hour format" checkbox, the format must be +"HH:MM"; - If you uncheck the "Input in 24-hour format" checkbox, the format +must be "HH:MM AM" or "HH:MM PM", the HH must contain a 12-hour format, from +0 to 12 and the "AM"|"PM" suffix can be in lowercase or uppercase - If you +check the Quiet hours" checkbox and keep the "Quiet hours start time" or +"Quiet hours end time" field empty, or type a mistaken value, the "Quiet +hours" checkbox will be unchecked automatically, to avoid errors; - A +message should be displayed to report your error. -Click OK, and a message will inform you the curretnly selected alarm duration. +## Compatibilitate + +- Acest supliment este compatibil cu versiunile de NVDA pornind de la +versiunea 2014.3 până la versiunea 2019.1. + + +[[!tag dev stable]] [1]: https://addons.nvda-project.org/files/get.php?file=cac [2]: https://addons.nvda-project.org/files/get.php?file=cac-dev + diff --git a/addon/doc/ru/readme.md b/addon/doc/ru/readme.md index 09353c8..aa04131 100644 --- a/addon/doc/ru/readme.md +++ b/addon/doc/ru/readme.md @@ -1,70 +1,70 @@ -# Clock and calendar Add-on for NVDA # +# Дополнение часов и календаря для NVDA # -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later +* Авторы: Hrvoje Katić, Abdel и учасники сообщества NVDA +* Загрузить [стабильную версию][1] +* Загрузить [разрабатываемую версию][2] +* Совместимость с NVDA: 2019.3 и позже -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. +Это дополнение включает расширенные функции часов, будильника и календаря для NVDA. -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. +Вы можете настроить NVDA так, чтобы она объявляла время и дату в форматах, отличных от тех, которые Windows предоставляет по умолчанию. Кроме того, вы можете получать информацию о текущем дне, номере недели, а также об оставшихся днях до конца текущего года, и вы также можете настроить автоматическое объявление времени с указанным интервалом. В дополнение также встроены функции секундомера и таймера будильника, которые позволяют засекать время выполнения таких задач, как копирование файлов, установка программ или приготовление пищи. -Notes: +Примечания: -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. +* если вы устанавливаете дополнение как обновление, то в процессе установки мастер определяет, совместима ли старая конфигурация с новой, и предлагает исправить её перед установкой, тогда вам просто нужно будет нажать кнопку OK, чтобы подтвердить это. +* В Windows 10 и выше вы можете использовать приложение часы и будильник для управления секундомером и таймерами. -## Key commands +## Клавиатурные команды -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer +* NVDA+F12: узнать текущее время +* NVDA+F12 дважды быстро: узнать текущую дату +* NVDA+F12 трижды быстро: объявляет текущий день, номер недели, текущий год и оставшиеся дни до конца года +* NVDA+Shift+F12: войти в уровень часов -## Unassigned commands +## Неназначенные команды -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. +Следующие команды по умолчанию не назначены; если вы хотите их назначить, используйте диалог жестов ввода для добавления пользовательских команд. Для этого откройте меню NVDA, Параметры, затем жесты ввода. Разверните категорию "Часы", найдите в списке ниже неназначенные команды и выберите "Добавить", введите жест, который вы хотите использовать. -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). +* Истёкшее и оставшееся время до следующего срабатывания будильника. быстрое повторное нажатие этого жеста приведёт к отмене следующего срабатывания будильника. +* Остановить воспроизведение текущего сигнала будильника. +* Показать диалог расписания сигналов будильников. +* Показать многоуровневые команды (клавиши, которые следует нажимать после NVDA+Shift+F12). -## Layered commands +## Многоуровневые команды -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: +Чтобы использовать многоуровневые команды, нажмите NVDA+Shift+F12, а затем одну из следующих клавиш: -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) +* S: Запускает, сбрасывает или останавливает секундомер +* R: Сбрасывает значение секундомера на 0 без его перезапуска +* A: показывает прошедшее и оставшееся время до следующего сигнала будильника +* T: открывает диалог планирования сигналов будильника. +* C: Отменить следующий сигнал будильника +* Пробел: Проговаривает текущий секундомер или таймер обратного отсчёта +* p: Если сигнал будильника слишком длинный, позволяет остановить его +* H: Перечислить все многоуровневые команды (Справка) -## Configuration and usage +## Настройка и использование -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: +Чтобы настроить функциональность часов, откройте меню NVDA, "Параметры", затем "Настройки" и настройте следующие параметры на панели часов: -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. +* Формат отображения времени и даты: используйте эти комбинированные списки, чтобы настроить, как NVDA будет объявлять время и дату при быстром нажатии NVDA+F12 один или два раза соответственно. +* Интервал: выберите интервал объявления времени в этом комбинированном списке (отключён, каждые 10 минут, 15 минут, 30 минут или каждый час). +* Объявление времени (включено, если интервал не отключен): выберите между речью и звуком, только звуком или только речью. +* Звук боя часов (включен, если интервал не отключен): Выберите звук звонка часов по умолчанию для промежуточных минут и начала часа. +* Разделять сигналы часов и промежуточных минут (включено, если интервал не отключен, отключено по умолчанию): Установите этот флажок, чтобы настроить звуковые сигналы для промежуточных минут отдельно от почасового сигнала. + * Звуковой сигнал промежуточных минут (включено, если установлен флажок "Разделять часовые и промежуточные минутные звонки"): Выберите звук боя часов специально для промежуточных минут. +* Тихий час (включён, если интервал не отключён): установите этот флажок, чтобы настроить диапазон тихих часов, когда не будет работать автоматическое объявление времени. +* Формат времени тихого часа (включен, если включена функция "тихий час"): выберите способ отображения параметров "тихих часов" (12-часовой или 24-часовой формат). +* Время начала и окончания тихого часа: выберите диапазон часов и минут для тихих часов в комбинированных списках часов и минут. -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: +Чтобы запланировать сигналы будильника, откройте меню NVDA, Сервис, затем выберите Запланировать сигналы будильника. Содержимое диалога включает: -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. +* Длительность срабатывания будильника в: выберите длительность срабатывания будильника/таймера в диапазоне часов, минут и секунд. +* Длительность: введите продолжительность срабатывания будильника в единице измерения, указанной выше. +* Звуковой сигнал будильника: выберите звуковой сигнал будильника, который будет воспроизводиться. +* Кнопки остановки и паузы: остановка или приостановка длительного звукового сигнала будильника. -Click OK, and a message will inform you the curretnly selected alarm duration. +Нажмите OK, и в сообщении будет указана выбранная в данный момент продолжительность сигнала будильника. [1]: https://addons.nvda-project.org/files/get.php?file=cac diff --git a/addon/doc/sk/readme.md b/addon/doc/sk/readme.md index 09353c8..b5559ec 100644 --- a/addon/doc/sk/readme.md +++ b/addon/doc/sk/readme.md @@ -1,70 +1,88 @@ -# Clock and calendar Add-on for NVDA # +# Rozšírené hodiny a kalendár # * Authors: Hrvoje Katić, Abdel and NVDA contributors * Download [stable version][1] * Download [development version][2] -* NVDA compatibility: 2019.3 and later +* NVDA compatibility: 2019.3 and beyond -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. +This add-on enables the advanced clock, alarm timer and calendar +functionality for NVDA. -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. +Môžete nastaviť spôsob oznamovania času hlasovým výstupom a na braillovskom +riadku. -Notes: +Doplnok dokáže oznamovať počet dní do konca roka, číslo týždňa a automaticky +oznamovať čas. -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. +There's also a stopwatch and Alarm timer features built-in to the add-on +that lets you time your tasks, such as copying files, installing programs, +or cooking meals. -## Key commands +## Poznámka: -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands +Doplnok automaticky rozpozná staršiu verziu a na túto skutočnosť +upozorní. Správu len stačí potvrdiť. -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: +## Použitie -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) +* Open the configuration dialog for this add-on from NVDA Settings dialog. + * In the Clock setup panel, the first two Combo Box controls allow you to choose your prefered time and date display formats. + * The Combo Box control labeled "Interval" allows you to set the interval for automatic time announcement (Every 10 minutes, Every 15 minutes, Every 30 minutes, Every hour, or Off). + * The Combo Box control labeled "Time announcement" (only visible if the choice "off" is not selected in the interval Combo Box) lets you configure how the automatic time announcement should be reported (Speech and sound, Speech only, or Sound only) when automatic time announcement is working. + * The Combo box control labeled "Clock chime sound" (only visible if the choice "off" is not selected in the interval Combo Box) lets you choose between various clock sounds that will be played when automatic time announcement is working and reported with sound. + * The Checkbox control labeled "Quiet hours" (only visible if the choice "off" is not selected in the interval Combo Box) lets you configure time range when automatic time announcement shouldn't occur. + * The Checkbox control labeled "input in 24-hour format" (only visible if quiet hours are enabled) allows you to configure whether you want to input time for quiet hours in 12-hour (A.M. or P.M.), or european 24-hour format. + * The Edit box controls for start and end time (only visible if quiet hours are enabled) let you configure time range for quiet hours. The time should be entered in HH:MM format if the "input in 24-hour format" checkbox is checked, otherwise you must use a 12 hour format as described below. + * When done, tab to the OK button and activate it by pressing Enter to save your settings. + * In the Alarm setup dialog, the first Combo Box control allow you to choose your prefered countdown timer before the alarm ring. + * The Edit box control lets you type your time waiting before the alarm ring. This duration must be specified in 1 or more digits, not a decimal number. + * The Combo box control labeled "Alarm sound" lets you choose between various alarm sounds that will be played when the alarm time arrives. + * The pause button allows you to pause/resume too long alarms. + * The stop button allows you to stop too long alarms. + * When done, tab to the OK button and activate it by pressing Enter. A message should be displayed to remind you of the waiting time before the alarm. +* Press NVDA+F12 once to get current time, twice to get current date, or three times to get the current day, week number, as well as the remaining days before the end of the current year. -## Configuration and usage +## Klávesové skratky -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. +* NVDA+F12: get current time +* NVDA+F12 pressed twice quickly: get current date +* NVDA+F12 pressed three times quickly: reports the current day, the week + number, the current year and the remaining days before the end of the + year. +* There is a script that gives the remaining and elapsed time before the + next alarm. There is no keyboard gesture assigned to this script, you will + have to do it yourself in the "Input gestures" dialog box, in the "Clock" + category. pressing this gesture twice quickly will cancel the next alarm. +* There is another script to stop the sound that is currently playing, its + gesture is also not defined. That script can also be called using the + clock layer commands described below. + +## Zložené Klávesové skratky + +Zložené príkazy pozostávajú zo skratky nvda+shift+F12 nasledovanej písmnom: + +* S: Spusti, vynuluj alebo zastav stopky; +* R: Vynuluj a zastav stopky; +* A: Oznámi uplynutý a zostávajúci čas minutníka; +* C: Prerušiť odpočítavanie minutníka; +* Medzera: Povedz čas stopiek alebo minutníka; +* P: Zruš odpočítavanie minutníka; +* H: Oznám dostupné zložené príkazy. + +## Spôsob zadávania času tichých hodín + +* To avoid bugs, the quiet hours must follow a rigorous and precise syntax. +* If you check the "Input in 24-hour format" checkbox, the format must be + "HH:MM". +* If you uncheck the "Input in 24-hour format" checkbox, the format must be + "HH:MM AM" or "HH:MM PM", the HH must contain a 12-hour format, from 0 to + 12 and the "AM"|"PM" suffix can be in lowercase or uppercase. +* If you check the Quiet hours" checkbox and keep the "Quiet hours start + time" or "Quiet hours end time" field empty, or type a mistaken value, the + "Quiet hours" checkbox will be unchecked automatically to avoid errorss + and a message will be displayed. + +[[!tag dev stable]] [1]: https://addons.nvda-project.org/files/get.php?file=cac diff --git a/addon/doc/sl/readme.md b/addon/doc/sl/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/sl/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/so/readme.md b/addon/doc/so/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/so/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/sq/readme.md b/addon/doc/sq/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/sq/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/sr/readme.md b/addon/doc/sr/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/sr/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/sv/readme.md b/addon/doc/sv/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/sv/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/ta/readme.md b/addon/doc/ta/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/ta/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/th/readme.md b/addon/doc/th/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/th/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/tr/readme.md b/addon/doc/tr/readme.md index 09353c8..e43adbe 100644 --- a/addon/doc/tr/readme.md +++ b/addon/doc/tr/readme.md @@ -1,70 +1,70 @@ -# Clock and calendar Add-on for NVDA # +# NVDA için saat ve takvim Eklentisi # -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later +* Yazarlar: Hrvoje Katić, Abdel ve NVDA'ya katkıda bulunanlar +* [Kararlı Sürümü İndir][1] +* [Geliştirici sürümünü indir][2] +* NVDA uyumluluğu: 2019.3 ve üstü -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. +Bu eklenti, NVDA için gelişmiş saat, alarm zamanlayıcı ve takvim işlevselliğini etkinleştirir. -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. +NVDA'yı, Windows'un varsayılan olarak sağladığından farklı biçimlerde saat ve tarihi duyuracak şekilde yapılandırabilirsiniz. Ayrıca içinde bulunulan gün, hafta numarası ve içinde bulunulan yılın bitmesine kalan gün sayısı bilgisini alabilir, ayrıca belirtilen aralıkta otomatik saat duyurusu ayarlayabilirsiniz. Eklentide yerleşik olarak bulunan ve dosya kopyalama, program yükleme veya yemek pişirme gibi görevlerinizi zamanlamanıza olanak tanıyan bir kronometre ve Alarm zamanlayıcı özellikleri de vardır. -Notes: +Notlar: -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. +* eklentiyi güncelleme olarak yüklerseniz, yükleme işlemi sırasında sihirbaz eski konfigürasyonun yenisiyle uyumlu olup olmadığını algılar ve yüklemeden önce düzeltmeyi önerir, ardından onaylamak için tamam düğmesini seçmeniz yeterlidir. +* Windows 10 ve sonraki sürümlerde, kronometreyi ve zamanlayıcıları yönetmek için Alarmlar ve Saat uygulamasını kullanabilirsiniz. -## Key commands +## Tuş komutları -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer +* NVDA+F12, şimdiki zamanı al +* NVDA+F12'ye iki kez hızlıca basıldığında güncel tarihi alın +* NVDA+F12'ye hızlı bir şekilde üç kez basıldığında içinde bulunulan günü, hafta numarasını, içinde bulunulan yılı ve yılın bitmesi için kalan günleri bildirir +* NVDA+Shift+F12: saat komut katmanına girin -## Unassigned commands +## Atanmamış komutlar -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. +Aşağıdaki komutlar varsayılan olarak atanmamıştır; bunları atamak istiyorsanız, özel komutlar eklemek için Girdi Hareketleri iletişim kutusunu kullanın. Bunu yapmak için NVDA menüsünü, Tercihler'i ve ardından Girdi Hareketlerini açın. Saat kategorisini genişletin, ardından aşağıdaki listeden atanmamış komutları bulun ve "Ekle"yi seçin, ardından kullanmak istediğiniz hareketi girin. -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). +* Bir sonraki alarmdan önce geçen ve kalan süre. bu harekete hızlıca iki kez basmak bir sonraki alarmı iptal edecektir. +* Çalmakta olan alarm sesini durdurun. +* Alarm ayarı iletişim kutusunu aç. +* Komut katmanını gösterir (NVDA+Shift+F12'den sonra basılacak tuşlar). -## Layered commands +## Katman komutları -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: +Katman komutlarını kullanmak için NVDA+Shift+F12 tuşlarına ve ardından aşağıdaki tuşlardan birine basın: -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) +* S: Kronometreyi başlatır, sıfırlar veya durdurur +* R: Kronometreyi yeniden başlatmadan sıfırlar +* A: bir sonraki alarmdan önce kalan ve geçen süreyi verir +* T: Alarm ayarı iletişim kutusunu açar. +* C: Sonraki alarmı iptal eder +* Boşluk: Geçerli kronometreyi veya geri sayım sayacını söyler +* p: Bir alarm çok uzunsa, onu durdurmaya olanak tanır +* H: Tüm katman komutlarını listeler. (Yardım) -## Configuration and usage +## Yapılandırma ve kullanım -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: +Saat işlevini yapılandırmak için NvDA menüsünü, Tercihler'i ve ardından Ayarlar'ı açın ve Saat panelinden aşağıdaki seçenekleri yapılandırın: -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. +* Saat ve tarih görüntüleme formatı: NVDA+F12'ye sırasıyla bir veya iki kez hızlıca bastığınızda NVDA'nın saat ve tarihi nasıl duyuracağını yapılandırmak için bu seçim kutularını kullanın. +* Aralık: bu seçim kutusundan saat anons aralığını seçin (kapalı, her 10 dakikada bir, her 15 dakikada bir, her 30 dakikada bir veya her saat başı). +* Saat anonsu (aralık kapalı değilse etkinleştirilir): konuşma ve ses, yalnızca ses veya yalnızca konuşma arasında seçim yapın. +* Saat zil sesi (aralık kapalı değilse etkinleştirilir): saat zil sesini seçin. +* Ayrı saat ve ara dakika zilleri (aralık kapalı değilse etkindir, varsayılan olarak devre dışıdır): Ara dakikalar için zilleri saatlik zilden ayrı olarak özelleştirmek için bu onay kutusunu etkinleştirin. + * Ara dakika zil sesi ("Saat ve ara dakika zillerini ayır" işaretliyse etkin): Özellikle ara dakikalar için saat zil sesini seçin. +* Sessiz saatler (aralık kapalı değilse etkinleştirilir): Otomatik saat anonsunun yapılmaması gerektiğinde sessiz saatler aralığını yapılandırmak için bu onay kutusunu işaretleyin. +* Sessiz saat biçimi (sessiz saatler etkinse etkinleştirilir): sessiz saat seçeneklerinin nasıl sunulacağını seçin (12 saatlik veya 24 saatlik biçim). +* Sessiz saatler başlangıçv e bitiş saatleri: Saat ve dakika seçim kutularından sessiz saatler için saat ve dakika aralığını seçin. -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: +Alarm programlamak için, NVDA menüsü, Araçlar'ı açın ve ardından Alarm ayarla'yı seçin. İletişim kutusu şunları içerir: -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. +* Alarm süre birimi: saat, dakika ve saniye arasında alarm/zamanlayıcı süresini seçin. +* Süre: yukarıda belirtilen birimde alarm süresini girin. +* Alarm sesi: çalınacak alarm sesini seçin. +* Durdur ve duraklat düğmeleri: uzun bir alarm sesini durdurun veya duraklatın. -Click OK, and a message will inform you the curretnly selected alarm duration. +Tamam'a bastığınızda şu anda seçilen alarm süresi bildirilecektir. [1]: https://addons.nvda-project.org/files/get.php?file=cac diff --git a/addon/doc/uk/readme.md b/addon/doc/uk/readme.md index 09353c8..3dc1fad 100644 --- a/addon/doc/uk/readme.md +++ b/addon/doc/uk/readme.md @@ -1,71 +1,98 @@ -# Clock and calendar Add-on for NVDA # +# Clock and calendar Add-on for NVDA (Годинник і календар для NVDA) # * Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev +* Завантажити [стабільну версію][1] + +* Сумісність з NVDA: 2019.3 і пізніші + +Цей додаток надає розширені функції годинника, таймера й календаря для NVDA. + +Ви можете налаштувати NVDA для озвучування часу й дати у форматах, відмінних +від тих, які початково надає Windows. Крім того, можна дізнатися поточний +день, номер тижня і кількість днів, що залишилися до кінця поточного року, а +також налаштувати автоматичне сповіщення часу на заданий інтервал. У додатку +також є вбудовані функції секундоміра і таймера, які дозволяють +розраховувати час виконання завдань, таких як копіювання файлів, +встановлення програм або приготування їжі. + +Примітки: + +* коли ви оновлюєте додаток, під час процесу встановлення майстер визначає, + чи стара конфігурація сумісна з новою, і пропонує виправити її перед + встановленням, тоді вам просто потрібно натиснути кнопку «Гаразд» для + підтвердження. +* У Windows 10 і новіших версіях можна використовувати програму «таймери та + годинники», щоб керувати секундоміром і таймером. + +## Основні команди + +* NVDA+F12: повідомляє поточний час +* NVDA+F12 натисніть двічі швидко: промовляє поточну дату +* NVDA+F12 натисніть тричі швидко: промовляє поточний день, номер тижня, рік + і дні, що залишилися до кінця року +* NVDA+Shift+F12: ввести багаторівневу команду годинника + +## Непризначені команди + +Ці команди початково не призначені; якщо ви хочете їх призначити, +скористайтеся діалогом «Жести вводу», щоб додати власні команди. Для цього +відкрийте меню NVDA, Параметри, потім Жести вводу. Відкрийте категорію +«Годинник», потім знайдіть непризначені команди у списку нижче та виберіть +«Додати», а потім введіть жест, який ви хочете використовувати. + +* Повідомити Час, що минув і залишився до наступного таймера. Подвійне + швидке натискання цього жесту скасує таймер. +* Зупинити відтворення сигналу таймера. +* Відкрити діалог нагадування розкладу. + +## Багаторівневі команди + +Щоб використовувати багаторівневі команди, натисніть NVDA+Shift+F12, потім +одну з нижченаведених клавіш: + +* S: запускає, скидає або зупиняє секундомір +* R: Скидає секундомір на 0 без перезапуску +* A: показує час, що минув і залишився до наступного сигналу таймера +* T: відкриває діалог розкладу таймера. +* C: скасовує наступний таймер +* Пробіл: промовляє поточний секундомір або зворотний відлік таймера +* p: якщо сигнал таймера надто довгий, дозволяє його зупинити +* H: список усіх багаторівневих команд (довідка) + +## Налаштування й використання + +Щоб налаштувати функції годинника, відкрийте меню NVDA, Параметри, потім +Налаштування та налаштуйте такі параметри в категорії Годинника: + +* Формат відображення часу та дати: використовуйте ці поля зі списком, щоб + налаштувати, як NVDA оголошуватиме час і дату, коли ви швидко натискаєте + NVDA+F12 один раз або двічі відповідно. +* Інтервал: виберіть інтервал озвучування часу з цього списку (вимкнено, + кожні 10 хвилин, 15 хвилин, 30 хвилин або щогодини). +* Промовляння часу (якщо інтервал не вимкнено): виберіть між голосом і + звуком, лише звуком або лише голосом. +* Звук сигналу годинника (якщо інтервал не вимкнено): виберіть звук сигналу + годинника. +* Тихі години (якщо інтервал не вимкнено): установіть цей прапорець, щоб + налаштувати діапазон тихих годин, коли автоматичне сповіщення часу не + відбуватиметься. +* Формат часу тихих годин (якщо ввімкнено режим тихих годин): виберіть, як + відображатимуться параметри тихого часу (12-годинний або 24-годинний + формат). +* Час початку та закінчення тихого режиму: виберіть діапазон годин і хвилин + для тихого режиму з комбінованого списку годин і хвилин. + +Щоб запланувати таймер, відкрийте меню NVDA, Інструменти, потім виберіть +Запланувати таймер. Вміст діалогу включає: + +* Тривалість таймера в: виберіть тривалість таймера/таймера в годинах, + хвилинах та секундах. +* Тривалість: введіть тривалість таймера у вказаних вище одиницях. +* Звук таймера: виберіть звук таймера, який повинен відтворюватись. +* Кнопки зупинки та паузи: зупинка або пауза тривалого звукового сигналу. + +Натисніть «Гаразд» і почуєте вибрану тривалість таймера. + +[[!tag stable]] + +[1]: https://www.nvaccess.org/addonStore/legacy?file=clock diff --git a/addon/doc/ur/readme.md b/addon/doc/ur/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/ur/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/vi/readme.md b/addon/doc/vi/readme.md index 09353c8..9a95a57 100644 --- a/addon/doc/vi/readme.md +++ b/addon/doc/vi/readme.md @@ -1,70 +1,91 @@ -# Clock and calendar Add-on for NVDA # +# Đồng hồ và lịch Add-on cho NVDA # * Authors: Hrvoje Katić, Abdel and NVDA contributors * Download [stable version][1] * Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands +* NVDA compatibility: 2019.3 and beyond + +This add-on enables the advanced clock, alarm timer and calendar +functionality for NVDA. + +Thay vì luôn lấy thông tin ngày giờ từ Windows, bạn có thể tùy biến cách mà +NVDA đọc và hiển thị ngày giờ trong chữ nổi. + +Thêm nữa, bạn có thể lấy thông tin về ngày hiện tại, số tuần, kể cả số ngày +còn lại trước khi kết thúc năm, và bạn cũng có thể đặt báo giờ tự động trong +khoảng thời gian nhất định. + +There's also a stopwatch and Alarm timer features built-in to the add-on +that lets you time your tasks, such as copying files, installing programs, +or cooking meals. + +## Lưu ý: + +Nếu bạn cài đặt add-on ở dạng cập nhật, trong khi thực hiện cài đặt, chương +trình sẽ kiểm tra việc cấu hình cũ có tương thích với phiên bản mới và chỉnh +sửa chúng trước khi cài đặt, rồi thì bạn chỉ việc bấm nút Đồng Ý để xác +nhận. + +## Sử dụng + +* Open the configuration dialog for this add-on from NVDA Settings dialog. + * In the Clock setup panel, the first two Combo Box controls allow you to choose your prefered time and date display formats. + * The Combo Box control labeled "Interval" allows you to set the interval for automatic time announcement (Every 10 minutes, Every 15 minutes, Every 30 minutes, Every hour, or Off). + * The Combo Box control labeled "Time announcement" (only visible if the choice "off" is not selected in the interval Combo Box) lets you configure how the automatic time announcement should be reported (Speech and sound, Speech only, or Sound only) when automatic time announcement is working. + * The Combo box control labeled "Clock chime sound" (only visible if the choice "off" is not selected in the interval Combo Box) lets you choose between various clock sounds that will be played when automatic time announcement is working and reported with sound. + * The Checkbox control labeled "Quiet hours" (only visible if the choice "off" is not selected in the interval Combo Box) lets you configure time range when automatic time announcement shouldn't occur. + * The Checkbox control labeled "input in 24-hour format" (only visible if quiet hours are enabled) allows you to configure whether you want to input time for quiet hours in 12-hour (A.M. or P.M.), or european 24-hour format. + * The Edit box controls for start and end time (only visible if quiet hours are enabled) let you configure time range for quiet hours. The time should be entered in HH:MM format if the "input in 24-hour format" checkbox is checked, otherwise you must use a 12 hour format as described below. + * When done, tab to the OK button and activate it by pressing Enter to save your settings. + * In the Alarm setup dialog, the first Combo Box control allow you to choose your prefered countdown timer before the alarm ring. + * The Edit box control lets you type your time waiting before the alarm ring. This duration must be specified in 1 or more digits, not a decimal number. + * The Combo box control labeled "Alarm sound" lets you choose between various alarm sounds that will be played when the alarm time arrives. + * The pause button allows you to pause/resume too long alarms. + * The stop button allows you to stop too long alarms. + * When done, tab to the OK button and activate it by pressing Enter. A message should be displayed to remind you of the waiting time before the alarm. +* Press NVDA+F12 once to get current time, twice to get current date, or three times to get the current day, week number, as well as the remaining days before the end of the current year. + +## Các phím lệnh * NVDA+F12: get current time * NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. +* NVDA+F12 pressed three times quickly: reports the current day, the week + number, the current year and the remaining days before the end of the + year. +* There is a script that gives the remaining and elapsed time before the + next alarm. There is no keyboard gesture assigned to this script, you will + have to do it yourself in the "Input gestures" dialog box, in the "Clock" + category. pressing this gesture twice quickly will cancel the next alarm. +* There is another script to stop the sound that is currently playing, its + gesture is also not defined. That script can also be called using the + clock layer commands described below. + +## Các lệnh layer + +Để dùng các lệnh layer, bấm NVDA+Shift+F12 rồi một trong các phím sau: + +* S: Bắt đầu, đặt lại hay dừng đồng hồ bấm giờ; +* R: đặt lại đồng hồ báo giờ là 0 mà không khởi động lại nó; +* A: cung cấp thời gian đã qua và còn lại trước báo hiệu tiếp theo; +* C: hủy báo hiệu tiếp theo; +* Khoảng trắng: thông báo đồng hồ bấm giờ hay thời gian đếm ngược hiện tại; +* p: nếu báo hiệu quá dài thì cho phép dừng lại; +* H: liệt kê tất cả lệnh layer. + +## Cú pháp dùng cho giờ yên tĩnh + +* To avoid bugs, the quiet hours must follow a rigorous and precise syntax. +* If you check the "Input in 24-hour format" checkbox, the format must be + "HH:MM". +* If you uncheck the "Input in 24-hour format" checkbox, the format must be + "HH:MM AM" or "HH:MM PM", the HH must contain a 12-hour format, from 0 to + 12 and the "AM"|"PM" suffix can be in lowercase or uppercase. +* If you check the Quiet hours" checkbox and keep the "Quiet hours start + time" or "Quiet hours end time" field empty, or type a mistaken value, the + "Quiet hours" checkbox will be unchecked automatically to avoid errorss + and a message will be displayed. + +[[!tag dev stable]] [1]: https://addons.nvda-project.org/files/get.php?file=cac diff --git a/addon/doc/zh_CN/readme.md b/addon/doc/zh_CN/readme.md index 09353c8..92810c2 100644 --- a/addon/doc/zh_CN/readme.md +++ b/addon/doc/zh_CN/readme.md @@ -1,70 +1,70 @@ -# Clock and calendar Add-on for NVDA # +# NVDA 时钟和日历插件 # -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later +* 作者:Hrvoje Katić, Abdel and NVDA contributors +* 下载 [稳定版][1] +* 下载 [开发版][2] +* NVDA 兼容性:2019.3 及更高版本 -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. +此插件为 NVDA 启用了高级时钟、闹钟和日历功能。 -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. +借助这个插件,您可以让 NVDA 以 Windows 默认时间格式以外的格式读出日期时间。此外,您还可以查看当前年份、已过天数或周数,以及本年的剩余天数,还能够按照指定的间隔播报时间。插件还具备提醒和秒表计时器功能,您可以为某些任务计时或设置提醒(如复制文件、安装程序或做饭等)。 -Notes: +注: -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. +* 如果您正在安装的插件高于先前版本,在安装过程中,安装向导会检测旧配置是否与新配置兼容,并可以进行相应的自动更正,在此过程中您只需确认即可。 +* 在 Windows 10 及以后版本的操作系统上,您可以使用闹钟和提醒应用程序来管理秒表和计时器。 -## Key commands +## 键盘命令 -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer +* NVDA+F12:读出当前时间 +* NVDA+F12 连按两次:读出当前日期 +* NVDA+F12 连按三次:读出当前日期,周数、年份及本年的剩余天数 +* NVDA+Shift+F12:打开时钟命令面板 -## Unassigned commands +## 未分配的命令 -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. +以下命令默认没有分配快捷键;如果您想为这些命令分配快捷键,请在按键与手势对话框内添加。打开 NVDA 菜单,选项,找到“按键与手势”。展开时钟类别,然后选择要分配快捷键的命令,点击“添加”按钮,按下您想分配的快捷键即可。 -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). +* 读出距离下一个提醒的时间。连按两次取消。 +* 停止当前响铃。 +* 显示提醒设置对话框。 +* 显示命令面板(在按 NVDA+Shift+F12 后需要按下的按键)。 -## Layered commands +## 命令面板 -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: +要使用命令面板,请先按NVDA + Shift + F12,然后按下相应功能的对应快捷键: -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) +* s : 启动、重置或停止秒表 +* r : 重置秒表但不重新开始 +* A: 读出距离下依次提醒的已经过时间和剩余时间 +* t: 显示提醒设置对话框。 +* c : 取消下一个提醒 +* 空格 : 读出当前秒表或上次计时器的时间 +* p : 停止响铃(如果响铃时间过长) +* h : 读出时钟命令面板中的可用命令 -## Configuration and usage +## 设置和使用 -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: +要设置时钟插件的功能,请打开 NvDA 菜单、选项、设置,然后在时钟面板设置以下选项: -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. +* 时间和日期显示格式:使用这两个组合框来设置当您分别快速按 NVDA+F12 一次或两次时 NVDA 应该如何读出时间和日期。 +* 报时间隔:在此组合框中选择报时间隔(关闭、每 10 分钟、15 分钟、30 分钟或每小时)。 +* 报时方式(如果报时间隔未关闭则该设置有效):在语音和音效、只有音效或只有语音之间进行选择。 +* 时钟铃声(如果报时间隔未关闭则该设置有效):选择时钟铃声。 +* 区分整点与分钟铃声(默认禁用,仅当报时间隔未关闭时生效):启用此复选框可为分钟报时设置不同于整点报时的铃声。 + * 分钟铃声(仅当选中“区分整点与分钟铃声”时启用):选择专用于分钟报时的铃声。 +* 免打扰时段(仅在“报时间隔”组合框中未选择“关闭”选项时才可见)允许您设置不自动报时的时间范围。 +* 免打扰时段时间格式:选择免打扰时段的显示方式(12 小时制或 24 小时制)。 +* 免打扰时段的开始和结束时间:从小时和分钟组合框中选择免打扰时段的开始和结束时间点。 -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: +要设置提醒,请打开 NVDA 菜单,工具,设置提醒,设置对话框内包括: -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. +* 倒计时单位:在小时、分钟和秒之间选择用于设置倒计时提醒的时间单位。 +* 倒计时时间:根据以上所选的单位输入相应的时间。 +* 铃声:选择提醒时播放的铃声。 +* 停止和暂停按钮:停止或暂停较长的铃声预览。 -Click OK, and a message will inform you the curretnly selected alarm duration. +点击“确认”,随后会显示一个对话框告诉您提醒开始的时间。 [1]: https://addons.nvda-project.org/files/get.php?file=cac diff --git a/addon/doc/zh_HK/readme.md b/addon/doc/zh_HK/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/zh_HK/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/doc/zh_TW/readme.md b/addon/doc/zh_TW/readme.md deleted file mode 100644 index 09353c8..0000000 --- a/addon/doc/zh_TW/readme.md +++ /dev/null @@ -1,71 +0,0 @@ -# Clock and calendar Add-on for NVDA # - -* Authors: Hrvoje Katić, Abdel and NVDA contributors -* Download [stable version][1] -* Download [development version][2] -* NVDA compatibility: 2019.3 and later - -This add-on enables the advanced clock, alarm timer and calendar functionality for NVDA. - -You can configure NVDA to announce time and date in formats other than what Windows provides by default. Additionally, you can obtain the current day, week number, as well as the remaining days before the end of the current year, and you can also set automatic time announcement on specified interval. There's also a stopwatch and Alarm timer features built-in to the add-on that lets you time your tasks, such as copying files, installing programs, or cooking meals. - -Notes: - -* if you install the add-on as an update, during the installation process, the wizard detects if the old configuration is compatible with the new one and offers to correct it before installing, then you'll just have to validate the OK button to confirm that. -* On Windows 10 and later, you can use Alarms and Clock app to manage stopwatch and timers. - -## Key commands - -* NVDA+F12: get current time -* NVDA+F12 pressed twice quickly: get current date -* NVDA+F12 pressed three times quickly: reports the current day, the week number, the current year and the remaining days before the end of the year -* NVDA+Shift+F12: enter clock layer - -## Unassigned commands - -The following commands are not assigned by default; if you wish to assign them, use Input Gestures dialog to add custom commands. To do so, open NVDA menu, Preferences, then Input Gestures. Expand Clock category, then locate unassigned commands from the list below and select "Add", then enter the gesture you wish to use. - -* Elapsed and remaining time before the next alarm. pressing this gesture twice quickly will cancel the next alarm. -* Stop currently playing alarm sound. -* Display schedule alarms dialog box. -* Show layered commands (keys to be pressed after NVDA+Shift+F12). - -## Layered commands - -To use layered commands, press NVDA+Shift+F12 followed by one of the following keys: - -* S: Starts, resets or stops the stopwatch -* R: Resets stopwatch to 0 without restarting it -* A: gives the elapsed and remaining time before the next alarm -* T: opens schedule alarms dialog. -* C: Cancel the next alarm -* Space: Speaks current stopwatch or count-down timer -* p: If an alarm is too long, allows to stop it -* H: List all layered commands (Help) - -## Configuration and usage - -To configure clock functionality, open NVDA menu, Preferences, then Settings, and configure the following options from Clock panel: - -* Time and date display format: use these combo boxes to configure how NVDA will announce time and date when you press NVDA+F12 once or twice quickly, respectively. -* Interval: choose the time announcement interval from this combo box (off, every 10 minutes, 15 minutes, 30 minutes, or every hour). -* Time announcement (enabled if interval is not off): choose between speech and sound, sound only, or speech only. -* Clock chime sound (enabled if interval is not off): Select the default clock chime sound for intermediate minutes and the top of the hour. -* Separate hour and intermediate minute chimes (enabled if interval is not off, disabled by default): Enable this checkbox to customize chimes for intermediate minutes separately from the hourly chime. - * Intermediate minutes chime sound (enabled if "Separate hour and intermediate minute chimes" is checked): Select the clock chime sound specifically for intermediate minutes. -* Quiet hours (enabled if interval is not off): select this checkbox to configure quiet hours range when automatic time announcement should not occur. -* Quiet hours time format (enabled if quiet hours is enabled): select how quiet hours options are presented (12-hour or 24-hour format). -* Quiet hours start and end times: select hour and minute range for quiet hours from hours and minutes combo boxes. - -To schedule alarms, open NVDA menu, Tools, then select Schedule Alarms. The dialog contents include: - -* Alarm duration in: select alarm/timer duration between hours, minutes, and seconds. -* Duration: enter alarm duration in the unit specified above. -* Alarm sound: select the alarm sound to be played. -* Stop and pause buttons: stop or pause a long alarm sound. - -Click OK, and a message will inform you the curretnly selected alarm duration. - -[1]: https://addons.nvda-project.org/files/get.php?file=cac - -[2]: https://addons.nvda-project.org/files/get.php?file=cac-dev diff --git a/addon/locale/af_ZA/LC_MESSAGES/nvda.po b/addon/locale/af_ZA/LC_MESSAGES/nvda.po deleted file mode 100644 index 530cf66..0000000 --- a/addon/locale/af_ZA/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:43\n" -"Last-Translator: \n" -"Language-Team: Afrikaans\n" -"Language: af_ZA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: af\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/am/LC_MESSAGES/nvda.po b/addon/locale/am/LC_MESSAGES/nvda.po deleted file mode 100644 index 54259d7..0000000 --- a/addon/locale/am/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:43\n" -"Last-Translator: \n" -"Language-Team: Amharic\n" -"Language: am_ET\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: am\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/an/LC_MESSAGES/nvda.po b/addon/locale/an/LC_MESSAGES/nvda.po deleted file mode 100644 index 9e185f8..0000000 --- a/addon/locale/an/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:43\n" -"Last-Translator: \n" -"Language-Team: Aragonese\n" -"Language: an_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: an\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/ar/LC_MESSAGES/nvda.po b/addon/locale/ar/LC_MESSAGES/nvda.po index cc757d8..a30ecf9 100644 --- a/addon/locale/ar/LC_MESSAGES/nvda.po +++ b/addon/locale/ar/LC_MESSAGES/nvda.po @@ -1,469 +1,435 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the 'clock' package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" +"Project-Id-Version: 'clock' '18.12'\n" "Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:43\n" -"Last-Translator: \n" -"Language-Team: Arabic\n" -"Language: ar_SA\n" +"POT-Creation-Date: 2018-12-16 09:44+0100\n" +"PO-Revision-Date: 2021-10-12 23:30+0300\n" +"Last-Translator: Hatoon \n" +"Language-Team: \n" +"Language: ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ar\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 3.0\n" +"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"تنسيق الوقت والتاريخ الذي كنت تستخدمه غير متوافق مع هذا الإصدار من الإضافة، " +"سيتم تصحيح هذا خلال عملية التثبيت. اضغط على زر موافق لتأكيد تلك التعديلات" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "تعديلات على تنسيقات الوقت والتاريخ" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} ساعات، " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} دقائق " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} ثواني" + +msgid "0 seconds" +msgstr "0 ثانية" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "الساعة" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "جدولة &المنبّهات" + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "يُتيح لك جدولة منبه" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"يُعلن الوقت الحالي. عند ضغطه مرتين سريعا يُعلن عن التاريخ الحالي. عند ضغطه " +"ثلاث مرات سريعة، يُعلن عن اليوم الحالي، ورقم الأسبوع، والسنة الحالية، والأيام " +"المتبقية قبل انتهائها." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "اليوم {day}، الأسبوع {week} من سنة {year}، الأيام المتبقية {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." msgstr "" +"الأوامر الخاصة بإضافة الساعة والتقويم. عند ضغط مفتاح الاختصار هذا، اضغط على " +"حرف الألف للمساعدة." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "لبدء أو إعادة ضبط أو إنهاء ساعة الإيقاف." + +msgid "Reset. Running." +msgstr "إعادة الضبط. جاري التشغيل." + +msgid "Running." +msgstr "جاري التشغيل." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} متوقف." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "ينطق قيمة ساعة الإيقاف الحالية أو المؤقت التنازلي." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "ينطق الوقت المنقضي والوقت المتبقي قبل المنبه التالي." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "الوقت المنقضي {elapsed}، الوقت المتبقي {remaining}." + +msgid "No alarm" +msgstr "لا يوجد منبه" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "إلغاء المنبه التالي." + +msgid "Alarm cancelled" +msgstr "إلغاء المنبه" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "إعادة ضبط ساعة الإيقاف إلى 0 دون إعادة تشغيلها." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"تمت إعادة ضبط ساعة الإيقاف إلى 0 بالفعل. استخدم أمر الإضافة التتابعي ثم اضغط " +"على حرف سِين لتبدأ بتشغيلها." + +msgid "Stopwatch reset." +msgstr "إعادة تعيين ساعة الإيقاف" + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "لعرض كافة الأوامر المتاحة عند استخدام إضافة الساعة." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "يُتيح معرفة التنبيه التالي. ضغطه مرتين سيُلغي المنبّه." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "يوقفُ المنبّه إذا كان طويلا جدا" + +msgid "No sound is launched." +msgstr "لا يوجد صوت قيد العمل" + +#, fuzzy +msgid "Sound stopped" +msgstr "{0} متوقف." + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "مربّع حوار جدولة المنبّهات مفتوحٌ بالفعل." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "يعرض المربع الحواري الخاص بإعدادات الساعة." + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "Display schedule alarms dialog box." +msgstr "يعرض المربع الحواري الخاص بإعدادات المنبه." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "&تنسيق عرض الوقت:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "تنسيق عرض التاري&خ:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "مُعَطَّل" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "كل 10 دقائق" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "كل 15 دقيقة" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "كل 30 دقيقة" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "كل ساعة" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 +#, fuzzy msgid "&Interval:" -msgstr "" +msgstr "الفا&صل الزمني:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 +#, fuzzy msgid "message and sound" -msgstr "" +msgstr "النطق والأصوات" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 +#, fuzzy msgid "message only" -msgstr "" +msgstr "النطق فقط" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "الصوت فقط" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "الإعلان عن ال&وقت:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "صوت &جرس الساعة:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" msgstr "" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" msgstr "" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "ساعات ال&هدوء" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 +#, fuzzy msgid "12-hour format" -msgstr "" +msgstr "استخدام نسق ال&24 ساعة" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 +#, fuzzy msgid "24-hour format" -msgstr "" +msgstr "استخدام نسق ال&24 ساعة" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 +#, fuzzy msgid "Quiet hours time &format:" -msgstr "" +msgstr "وقت نهاية ساعات الهدوء:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 +#, fuzzy msgid "Quiet hours start time" -msgstr "" +msgstr "وقت بداية ساعات الهدوء:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 +#, fuzzy msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "وقت نهاية ساعات الهدوء:" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 +#, fuzzy msgid "Hour:" -msgstr "" +msgstr "ساعات" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "دقائق:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "جدولة المنبهات" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 +#, fuzzy msgid "hours" -msgstr "" +msgstr "ساعات" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 +#, fuzzy msgid "minutes" -msgstr "" +msgstr "دقائق" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "ثوانٍ" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 +#, fuzzy msgid "&Alarm duration in:" -msgstr "" +msgstr "وقت انتظار المنبه:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" msgstr "" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "صوت الم&نبه:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&إيقاف" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&إيقاف مؤقَّت" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "لقد اخترت منبها ليتم تشغيله في {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "تأكيد" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "الساعة الآن {hours}، و{minutes} دقيقة" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "الساعة الآن {hours}، و{minutes} دقيقة و{seconds} ثانية" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "الساعة {hours}و {minutes} دقيقة" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "الساعة {hours}، و{minutes} دقيقة، و{seconds} ثانية" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "إنها الآن {minutes} دقيقة بعد الساعة {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} س {minutes} د" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} س، {minutes} د، {seconds} ث" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "إنها الآن {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "إنها الآن {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format +#, fuzzy, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "استخدام نسق ال&24 ساعة" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format +#, fuzzy, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "استخدام نسق ال&24 ساعة" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +#, fuzzy +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"إضافة برمجية متقدمة للوقت والتقويم تعمل مع برنامج NVDA.\n" +"NVDA+F12, الإعلان عن الوقت الحالي.\n" +"NVDA+F12 مرتين بسرعة، الحصول على التاريخ الحالي.\n" +"NVDA+F12 ثلاث مرات متتالية بسرعة، الإعلان عن اليوم الحالي، متبوعاً برقم " +"الأسبوع، ثم السنة الحالية، ثم عدد الأيام المتبقية حتى نهاية هذه السنة.\n" +"لمزيد من المعلومات، اضغط على زر المساعدة الخاص بالإضافة داخل مدير الإضافات " +"البرمجية." + +#~ msgid "Clock se&ttings..." +#~ msgstr "إعدادات ال&ساعة..." + +#~ msgid "Clock and calendar setup" +#~ msgstr "إعداد الوقت والتقويم" + +#~ msgid "Clock setup" +#~ msgstr "إعدادات الساعة" + +#~ msgid "Clock setup for times and dates" +#~ msgstr "إعداد التوقيتات والتواريخ" + +#~ msgid "Alarm settin&gs" +#~ msgstr "إعدادات ال&منبه" + +#~ msgid "Alarm setup" +#~ msgstr "إعدادات المنبه" + +#~ msgid "Seconds" +#~ msgstr "ثواني" + +#, fuzzy +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "اختر الوحدة الزمنية المستخدمة لتحديد التوقيت الذي يرن بعده المنبه:" + +#~ msgid "" +#~ "\n" +#~ "\t\tS: Starts, resets or stops the stopwatch.\n" +#~ "\t\tR: Resets stopwatch to 0 without restarting it.\n" +#~ "\t\tA: Gives the remaining and elapsed time before the next alarm.\n" +#~ "\t\tC: Cancel the next alarm.\n" +#~ "\t\tSpacebar: Speaks current stopwatch or count-down timer.\n" +#~ "\t\tH: List all layered commands (Help).\n" +#~ "\t\t" +#~ msgstr "" +#~ "\n" +#~ "\t\tس: إعادة ضبط أو إنهاء أو إعادة تعيين ساعة الإيقاف.\n" +#~ "\t\tقاف: إعادة تعيين ساعة الإيقاف إلى 0 دون إعادة تشغيلها.\n" +#~ "\t\tشِين: الإعلان عن الوقت المتبقي والوقت المنقضي على المنبه التالي.\n" +#~ "\t\tهمزة على واو: إلغاء المنبه التالي.\n" +#~ "\t\tمسطرة المسافة: الإعلان عن قيمة ساعة الإيقاف أو العداد التنازلي.\n" +#~ "\t\tألِف:عرض قائمة بالأوامر التتابعية للمساعدة.\n" +#~ "\t\t" diff --git a/addon/locale/bg/LC_MESSAGES/nvda.po b/addon/locale/bg/LC_MESSAGES/nvda.po index 555af0c..843fe77 100644 --- a/addon/locale/bg/LC_MESSAGES/nvda.po +++ b/addon/locale/bg/LC_MESSAGES/nvda.po @@ -1,469 +1,377 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:43\n" -"Last-Translator: \n" -"Language-Team: Bulgarian\n" -"Language: bg_BG\n" +"Project-Id-Version: clock 18.12\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-13 15:50+1000\n" +"PO-Revision-Date: 2024-05-03 16:46+0300\n" +"Last-Translator: Kostadin Kolev \n" +"Language-Team: \n" +"Language: bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: bg\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 3.4.2\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Форматът за дата и час, който сте използвали, не е съвместим с тази версия " +"на добавката \"Часовник\". Това ще бъде поправено по време на инсталирането. " +"Задействайте бутона \"OK\", за да потвърдите тези корекции." #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Корекция на формата за час и дата" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} часа, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} минути, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} секунди" + +msgid "0 seconds" +msgstr "0 секунди" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Часовник (Clock)" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Планиране на а&ларми..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Позволява ви да планирате аларма" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Съобщава текущия час. Бързото двукратно натискане съобщава текущата дата. " +"Бързото трикратно натискане съобщава текущия ден, номера на седмицата, " +"текущата година и оставащите дни преди края на годината." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Ден {day}, седмица {week} от {year} година, оставащи дни {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Слоеви команди за часовника и календара. След натискането на тази клавишна " +"команда, натиснете H за допълнителна помощ." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Стартира, нулира или спира хронометъра." + +msgid "Reset. Running." +msgstr "Нулиране. Изпълнява се." + +msgid "Running." +msgstr "Изпълнява се." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} е спряно." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Съобщава текущия хронометър или таймера за обратно отброяване." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Съобщава оставащото и изминалото време преди следващата аларма." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Изминало време {elapsed}, оставащо време {remaining}." + +msgid "No alarm" +msgstr "Няма аларма" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Анулира следващата аларма." + +msgid "Alarm cancelled" +msgstr "Алармата е анулирана" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Нулира хронометъра, без да го рестартира." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"Хронометърът вече е нулиран. Използвайте слоевата команда на часовника, " +"последвана от S, за да го стартирате." + +msgid "Stopwatch reset." +msgstr "Хронометърът е нулиран." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Показва наличните команди в командния слой за часовника." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." msgstr "" +"Позволява да направите справка за следващата аларма. При двукратно натискане " +"тя бива анулирана." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Ако алармата е твърде дълга, позволява да бъде спряна." + +msgid "No sound is launched." +msgstr "Няма възпроизвеждащ се звук." + +msgid "Sound stopped" +msgstr "Звукът е спрян" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "Диалогът за планиране на алармите вече е отворен." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Извежда диалоговия прозорец за настройка на часовника." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Извежда диалоговия прозорец за планиране на алармите." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "Формат за извеждане на &часа:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "Формат за извеждане на &датата:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "Изключено" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "На всеки 10 минути" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "На всеки 15 минути" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "На всеки 30 минути" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "На всеки час" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&Интервал:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "Съобщение и звук" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "Само съобщение" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "Само звук" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&Оповестявай часа чрез:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&Звуков сигнал за часовника:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" -msgstr "" +msgstr "&Отделни звукови сигнали за часове и междинни минути" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "&Звуков сигнал за междинни минути:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Тихи часове" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "12-часов формат" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "24-часов формат" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "&Формат за \"тихите часове\":" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Начален час за \"тихите часове\"" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Краен час за \"тихите часове\"" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Час:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Минута:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Планиране на аларми" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "Часове" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "Минути" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "Секунди" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "Времетраене на &алармата в:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Времетраене:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "&Звук за алармата:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Спри" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Постави на пауза" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Задали сте да се задейства аларма след {tm} {unit}." #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Потвърждение" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Сега е {hours} часа и {minutes} минути" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Сега е {hours} часа, {minutes} минути и {seconds} секунди" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} часа и {minutes} минути" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} часа, {minutes} минути и {seconds} секунди" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Сега е {hours} и {minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} ч. и {minutes} мин." #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} ч., {minutes} мин. и {seconds} сек." #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Сега е {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Сега е {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (24-часов формат)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (12-часов формат)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Разширен часовник и календар за NVDA.\n" +"NVDA+F12: Съобщаване на текущия час.\n" +"Двукратно бързо натискане на NVDA+F12: Съобщаване на текущата дата.\n" +"Трикратно бързо натискане на NVDA+F12: Съобщаване на текущия ден, номера на " +"седмицата, текущата година и оставащите дни преди края на годината.\n" +"За други инструкции задействайте бутона \"Помощ за добавката\" в мениджъра " +"на добавките." diff --git a/addon/locale/bn/LC_MESSAGES/nvda.po b/addon/locale/bn/LC_MESSAGES/nvda.po deleted file mode 100644 index 23080f0..0000000 --- a/addon/locale/bn/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:43\n" -"Last-Translator: \n" -"Language-Team: Bengali\n" -"Language: bn_BD\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: bn\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/bs/LC_MESSAGES/nvda.po b/addon/locale/bs/LC_MESSAGES/nvda.po deleted file mode 100644 index 8d71193..0000000 --- a/addon/locale/bs/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:43\n" -"Last-Translator: \n" -"Language-Team: Bosnian\n" -"Language: bs_BA\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: bs\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/ca/LC_MESSAGES/nvda.po b/addon/locale/ca/LC_MESSAGES/nvda.po deleted file mode 100644 index 7e62ef9..0000000 --- a/addon/locale/ca/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: Catalan\n" -"Language: ca_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ca\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/ckb/LC_MESSAGES/nvda.po b/addon/locale/ckb/LC_MESSAGES/nvda.po deleted file mode 100644 index 4a23d92..0000000 --- a/addon/locale/ckb/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:49\n" -"Last-Translator: \n" -"Language-Team: Sorani (Kurdish)\n" -"Language: ckb_IR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ckb\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/cs/LC_MESSAGES/nvda.po b/addon/locale/cs/LC_MESSAGES/nvda.po index c702068..6b0c0ad 100644 --- a/addon/locale/cs/LC_MESSAGES/nvda.po +++ b/addon/locale/cs/LC_MESSAGES/nvda.po @@ -1,469 +1,448 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: Czech\n" -"Language: cs_CZ\n" +"Project-Id-Version: clock 18.12\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-13 15:50+1000\n" +"PO-Revision-Date: 2023-02-22 22:16+0100\n" +"Last-Translator: Radek Žalud \n" +"Language-Team: cs\n" +"Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: cs\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 3.2.2\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Formát data a času, který jste používali, není kompatibilní s touto verzí " +"doplnku. Po instalaci se nastaví jiný formát času a data. Změny potvrdíte " +"tlačítkem OK" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Oprava formátu času a data" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} hodin, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minut, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} sekund" + +msgid "0 seconds" +msgstr "0 sekund" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Hodiny a kalendář" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Naplánovat &minutník" + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Umožňuje nastavit odpočítávání času" + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Ohlásí čas. Dvojitý stisk ohlásí datum a trojitý stisk ohlásí aktuální den, " +"číslo týdne, aktuální rok a počet dnů do konce roku." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Den {day}, týden {week} rok {year}, počet dnů do konce roku: {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Klávesové příkazy pro hodiny a kalendář. Po stisku zkratky stiskněte písmeno " +"H pro další nápovědu." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Spustí, vynuluje nebo zastaví stopky." + +msgid "Reset. Running." +msgstr "Vynulováno. Běží." + +msgid "Running." +msgstr "Běží." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} zastaveno." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Ohlašuje aktuální čas stopek nebo minutníku." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Oznámí uplynulý a zbývající čas minutníku" + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Uplynulo {elapsed}, zbývá {remaining}." + +msgid "No alarm" +msgstr "Žádný minutník" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Zruší aktuální minutník." + +msgid "Alarm cancelled" +msgstr "minutník zrušen" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Vynuluje a zastaví stopky." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"Stopky jsou vynulovány. Použijte příkaz pro hodiny a kalendář a stiskněte " +"písmeno S pro spuštění stopek." + +msgid "Stopwatch reset." +msgstr "Stopky jsou vynulovány." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "" +"Zobrazí klávesové příkazy dostupné po stisku zkratky hodin a kalendáře." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "Zkontroluje čas minutníku. Dvojitý Stisk minutník zastaví." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Zastaví minutník." + +msgid "No sound is launched." +msgstr "Není spuštěn žádný zvuk." + +msgid "Sound stopped" +msgstr "Přehrávání zvuku zastaveno" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." msgstr "" +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Zobrazí dialog nastavení hodin a kalendáře." + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "Display schedule alarms dialog box." +msgstr "Zobrazí dialog nastavení minutníku." + #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "&Formát času:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "&Formát data:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" +msgstr "vypnuto" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "každých 10 minut" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "každých 15 minut" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "každých 30 minut" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "každou hodinu" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 +#, fuzzy msgid "&Interval:" -msgstr "" +msgstr "&Oznamovat čas:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 +#, fuzzy msgid "message and sound" -msgstr "" +msgstr "řeč a zvuk" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 +#, fuzzy msgid "message only" -msgstr "" +msgstr "řeč" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "pouze zvuk" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&oznamování času:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&Zvuk:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" msgstr "" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" msgstr "" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&tichý režim" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "&12-hodinový formát" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 +#, fuzzy msgid "24-hour format" -msgstr "" +msgstr "&24-hodinový formát" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 +#, fuzzy msgid "Quiet hours time &format:" -msgstr "" +msgstr "Neoznamovat čas do:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 +#, fuzzy msgid "Quiet hours start time" -msgstr "" +msgstr "Neoznamovat čas od:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 +#, fuzzy msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Neoznamovat čas do:" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 +#, fuzzy msgid "Hour:" -msgstr "" +msgstr "hodiny" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 +#, fuzzy msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "minuty" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Naplánovat minutník" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 +#, fuzzy msgid "hours" -msgstr "" +msgstr "hodiny" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 +#, fuzzy msgid "minutes" -msgstr "" +msgstr "minuty" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 +#, fuzzy msgid "seconds" -msgstr "" +msgstr "0 sekund" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 +#, fuzzy msgid "&Alarm duration in:" -msgstr "" +msgstr "&Čas odpočítání:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" msgstr "" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "&Zvuk:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "za&stavit" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Pozastavit" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Minutník se spustí za {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Potvrzení" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Je {hours} hodin a {minutes} minut" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Je {hours} hodin, {minutes} minut a {seconds} sekund" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} hodin, {minutes} minut" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} hodin, {minutes} minut, {seconds} sekund" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Je {minutes} po {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} h {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} h, {minutes} min, {seconds} sek" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Je {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Je {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" msgstr "" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" msgstr "" -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +#, fuzzy +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Rozšířené hodiny a kalendář pro NVDA.\n" +"NVDA+F12 ohlašuje čas.\n" +"Dvojitý stisk ohlašuje datum.\n" +"Trojitý stisk ohlašuje aktuální den, číslo týdne, aktuální rok a počet dnů " +"do konce roku.\n" +"Pro další instrukce stiskněte tlačítko pro Nápovědu ve správci doplnků." + +#~ msgid "Clock se&ttings..." +#~ msgstr "Na&stavení hodin a kalendáře..." + +#~ msgid "Clock and calendar setup" +#~ msgstr "Nastavení hodin a kalendáře" + +#~ msgid "Clock setup" +#~ msgstr "Hodiny" + +#~ msgid "Clock setup for times and dates" +#~ msgstr "Nastavení času a data" + +#~ msgid "Alarm settin&gs" +#~ msgstr "&Minutník" + +#~ msgid "" +#~ "The value you entered for your quiet hours is erroneous, for a 24-hour " +#~ "format, the value must be HH:MM, for a 12-hour format, the value must be " +#~ "HH:MM followed by the AM or PM suffix, please reread the documentation. " +#~ "So your quiet hours have been deactivated for prevent any error in the " +#~ "configuration file." +#~ msgstr "" +#~ "Hodnoty, které jste zadali pro tichý režim, nejsou správné. Pro 24-" +#~ "hodinový formát musí být hodnota HH:MM. Pro 12-hodinový formát musí být " +#~ "hodnota HH:MM doplněna znaky AM nebo PM. Znovu si prosím přečtěte " +#~ "dokumentaci. Aktuálně je oznamování času aktivní po celý den." + +#~ msgid "Error" +#~ msgstr "Chyba" + +#~ msgid "Alarm setup" +#~ msgstr "Minutník" + +#~ msgid "Seconds" +#~ msgstr "sekundy" + +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "Nastavte &typ a zvuk odpočítávání:" + +#~ msgid "" +#~ "\n" +#~ "\t\tS: Starts, resets or stops the stopwatch.\n" +#~ "\t\tR: Resets stopwatch to 0 without restarting it.\n" +#~ "\t\tA: Gives the remaining and elapsed time before the next alarm.\n" +#~ "\t\tC: Cancel the next alarm.\n" +#~ "\t\tSpacebar: Speaks current stopwatch or count-down timer.\n" +#~ "\t\tH: List all layered commands (Help).\n" +#~ "\t\t" +#~ msgstr "" +#~ "\n" +#~ "\t\tS: Spustí, zastaví, obnoví alebo reštartuje stopky.\n" +#~ "\t\tR: Resetuje stopky pre ďalšie spustenie.\n" +#~ "\t\tA: Poskytuje informácie o ďalšom budíku.\n" +#~ "\t\tC: Zruší ďalší budík.\n" +#~ "\t\tSpacebar: Oznamuje aktuálne meraný čas.\n" +#~ "\t\tH: Zoznam všetkých príkazov (Pomoc).\n" +#~ "\t\t" diff --git a/addon/locale/da/LC_MESSAGES/nvda.po b/addon/locale/da/LC_MESSAGES/nvda.po index a8a2a6b..f999d84 100644 --- a/addon/locale/da/LC_MESSAGES/nvda.po +++ b/addon/locale/da/LC_MESSAGES/nvda.po @@ -1,469 +1,437 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: Danish\n" -"Language: da_DK\n" +"Project-Id-Version: clock 18.12\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-13 15:50+1000\n" +"PO-Revision-Date: 2022-11-05 12:34+0100\n" +"Last-Translator: Nicolai Svendsen \n" +"Language-Team: Dansk NVDA \n" +"Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: da\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 3.2\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Det dato- og klokkeslætformat, du brugte, er ikke kompatibelt med denne " +"version af tilføjelsen. Dette bliver løst under installationen. Klik på OK " +"for at bekræfte disse rettelser." #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Rettelser til klokkeslæt- og datoformat" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} timer, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minutter, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} sekunder" + +msgid "0 seconds" +msgstr "0 sekunder" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Ur" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Indstil a&larmer..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Giver dig mulighed for at sætte en alarm" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Siger den aktuelle tid. Hvis du trykker to gange hurtigt, vil den aktuelle " +"dato blive oplæst. Hvis du trykker tre gange hurtigt, vil den aktuelle dag " +"blive oplæst, såvel som ugenummeret, det aktuelle år og de resterende dage " +"før årets udgang." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Dag {day}, uge {week} af {year}, resterende dage {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." msgstr "" +"Ur- og kalenderens lagdelte kommandoer. Når du har trykket på dette " +"tastetryk, skal du trykke på H for at få yderligere hjælp." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Starter, nulstiller eller stopper stopuret." + +msgid "Reset. Running." +msgstr "Nulstil. Kører." + +msgid "Running." +msgstr "Kører." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} stoppet." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Oplæser nuværende stopur eller nedtæller." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Giver den resterende og forløbet tid før den næste alarm." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Forløbet tid {elapsed}, resterende tid {remaining}." + +msgid "No alarm" +msgstr "Ingen alarm" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Annuller den næste alarm." + +msgid "Alarm cancelled" +msgstr "Alarm annulleret" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Nulstiller stopuret til 0 uden at genstarte det." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"Stopuret er allerede nulstillet til 0. Brug den lagdelte kommando efterfulgt " +"af S for at starte stopuret." + +msgid "Stopwatch reset." +msgstr "Stopur nulstillet." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Giver en liste over lagdelte kommandoer til uret" + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "" +"Tillader at tjekke den næste alarm. Hvis der trykkes to gange, annulleres " +"den." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Hvis en alarm er for lang, lader dette dig stoppe den." + +msgid "No sound is launched." +msgstr "Ingen lyd er afspillet." + +msgid "Sound stopped" +msgstr "Lyd stoppet" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "Dialogen til indstilling af alarmer er allerede åben." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Vis dialogboksen til urindstillinger." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Vis dialogboksen Alarmindstillinger." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "&Tidsvisningsformat:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "Visningsformat for dato og klokkeslæt:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "Fra" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "Hvert 10. minut" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "Hvert 15. minut" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "Hvert 30. minut" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "Hver time" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&Interval:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "Meddelelse og lyd" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "kun meddelelse" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "Kun lyd" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "Tids&annoncering:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&Urets ringelyd" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" msgstr "" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" msgstr "" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Stilletimer" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "12-timers format" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "24-timers format" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "Tids&format for stille timer:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Starttidspunkt for stilletimer" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Sluttidspunkt for stilletimer" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Time:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minut:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Indstil alarmer" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "Timer" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "Minutter" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "sekunder" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "&Alarmens varighed i:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Varighed:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "A&larmlyd:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Stop" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Pause" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Du har valgt at udløse en alarm om {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Bekræftelse" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Den er {hours} timer og {minutes} minutter" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Den er {hours} timer, {minutes} minutter og {seconds} sekunder" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} timer, {minutes} minutter" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} timer, {minutes} minutter, {seconds} sekunder" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Den er {minutes} over {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} t {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} t, {minutes} min, {seconds} sek" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Den er {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Den er {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (24-timers format)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (12-timers format)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Avanceret ur og kalender til NVDA.\n" +"NVDA + F12, få den aktuelle tid oplæst.\n" +"NVDA + F12 trykket to gange hurtigt, få den aktuelle dato oplæst.\n" +"NVDA + F12 trykket tre gange hurtigt, oplæser den aktuelle dag, ugenummeret, " +"det aktuelle år og de resterende dage før årets udgang.\n" +"For yderligere vejledning, tryk på knappen \"Hjælp\" i Styring af " +"tilføjelsesprogrammer." + +#~ msgid "Clock se&ttings..." +#~ msgstr "Indstillinger for &ur..." + +#~ msgid "Clock and calendar setup" +#~ msgstr "Opsætning til ur og kalender" + +#~ msgid "Clock setup" +#~ msgstr "Uropsætning" + +#~ msgid "Clock setup for times and dates" +#~ msgstr "Uropsætning for tider og datoer" + +#~ msgid "Alarm settin&gs" +#~ msgstr "Indstillinger for &alarm..." + +#~ msgid "" +#~ "The value you entered for your quiet hours is erroneous, for a 24-hour " +#~ "format, the value must be HH:MM, for a 12-hour format, the value must be " +#~ "HH:MM followed by the AM or PM suffix, please reread the documentation. " +#~ "So your quiet hours have been deactivated for prevent any error in the " +#~ "configuration file." +#~ msgstr "" +#~ "Værdien du indtastede i dfor stilletimer er fejlagtig. I et 24-timers " +#~ "format skal værdien være HH:MM og for et 12-timers format skal værdien " +#~ "være HH:MM efterfulgt af AM eller PM-suffixet. Læs venligst " +#~ "dokumentationen igen. Dine stilletimer er blevet deaktiveret for at " +#~ "forhindre en fejl i konfigurationsfilen." + +#~ msgid "Error" +#~ msgstr "Fejl" + +#~ msgid "Alarm setup" +#~ msgstr "Opsætning for alarm" + +#~ msgid "Seconds" +#~ msgstr "Sekunder" + +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "Vælg type for &nedtællingsinput, før alarmen lyder:" + +#~ msgid "" +#~ "\n" +#~ "\t\tS: Starts, resets or stops the stopwatch.\n" +#~ "\t\tR: Resets stopwatch to 0 without restarting it.\n" +#~ "\t\tA: Gives the remaining and elapsed time before the next alarm.\n" +#~ "\t\tC: Cancel the next alarm.\n" +#~ "\t\tSpacebar: Speaks current stopwatch or count-down timer.\n" +#~ "\t\tH: List all layered commands (Help).\n" +#~ "\t\t" +#~ msgstr "" +#~ "\n" +#~ "\t\tS: Starter, nulstiller eller stopper stopuret.\n" +#~ "\t\tR: Nulstiller stopur til 0 uden at genstarte det.\n" +#~ "\t\tA: Angiver resterende og forløbet tid før den næste alarm.\n" +#~ "\t\tC: Annuller næste alarm.\n" +#~ "\t\tSpacebar: Speaks current stopwatch or count-down timer.\n" +#~ "\t\tH: Vis en liste over alle lagdelte kommandoer(Hjælp).\n" +#~ "\t\t" diff --git a/addon/locale/de/LC_MESSAGES/nvda.po b/addon/locale/de/LC_MESSAGES/nvda.po index 927c522..1cb0ebd 100644 --- a/addon/locale/de/LC_MESSAGES/nvda.po +++ b/addon/locale/de/LC_MESSAGES/nvda.po @@ -1,469 +1,382 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:45\n" -"Last-Translator: \n" -"Language-Team: German\n" -"Language: de_DE\n" +"Project-Id-Version: clock 18.12\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-10 03:30+1000\n" +"PO-Revision-Date: \n" +"Last-Translator: René Linke \n" +"Language-Team: \n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: de\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 3.4.2\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Das von Ihnen verwendete Datums- und Uhrzeitformat ist nicht mit dieser " +"Version der NVDA-Erweiterung kompatibel. Dies wird während der Installation " +"automatisch berichtigt. Klicken Sie auf \"OK\", um dies zu bestätigen" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Berichtigungen des Zeit- und Datumsformats" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} Stunden, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} Minuten, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} Sekunden" + +msgid "0 seconds" +msgstr "0 Sekunden" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Uhr" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Wecker stellen..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Stellt einen Wecker" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Zeigt die aktuelle Uhrzeit an. Durch zweimaliges schnelles Drücken wird das " +"aktuelle Datum angezeigt. Durch dreimaliges schnelles Drücken werden der " +"aktuelle Tag, die Wochennummer, das aktuelle Jahr und die verbleibenden Tage " +"bis zum Jahresende angezeigt." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "" +"Tag {day}, Woche {week} des Jahres {year}, {remain} Tage bis zum Jahresende." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Befehle der Uhr- und Kalender. Drücken Sie nach dem Drücken dieser Taste H, " +"um zusätzliche Hilfe zu erhalten." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Startet, stoppt oder setzt die Stoppuhr zurück." + +msgid "Reset. Running." +msgstr "Zurücksetzen. Läuft." + +msgid "Running." +msgstr "Läuft." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} gestoppt." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Zeigt die aktuelle Stoppuhr oder den Countdown-Timer an." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." msgstr "" +"Zeigt die verbleibende und verstrichene Zeit bis zum nächsten Wecker an." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Verstrichene Zeit {elapsed}, verbleibende Zeit {remaining}." + +msgid "No alarm" +msgstr "Kein Wecker" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Bricht den nächsten Wecker ab." + +msgid "Alarm cancelled" +msgstr "Wecker abgebrochen" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Setzt die Stoppuhr auf 0 zurück, ohne sie neu zu starten." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"Die Stoppuhr ist bereits auf 0 zurückgesetzt. Verwenden Sie den Befehl " +"gefolgt von s, um sie zu starten." + +msgid "Stopwatch reset." +msgstr "Stoppuhr zurückgesetzt." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Listet die verfügbaren Befehle auf." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "" +"Überprüft den nächsten Wecker. Bei zweimaligem Drücken wird dieser " +"abgebrochen." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Wenn ein Wecker anhält, kann dieser damit gestoppt werden." + +msgid "No sound is launched." +msgstr "Es wird kein Sound wiedergegeben." + +msgid "Sound stopped" +msgstr "Sound gestoppt" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "Das Dialogfeld für den Wecker ist bereits geöffnet." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Zeigt das Dialogfeld für die Einstellungen der Uhr an." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Zeigt das Dialogfeld für den Wecker an." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "&Zeitformat für die Anzeige:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "&Datumsformat für die Anzeige:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "Ausgeschaltet" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "Alle 10 Minuten" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "Alle 15 Minuten" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "Alle 30 Minuten" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "Stündlich" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&Intervall:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "Meldung und Sound" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "Nur Meldung" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "Nur Sound" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "Zeit&ansage:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "Glockenton für die Uhr:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" -msgstr "" +msgstr "&Separater Stunden- und Zwischenminuten-Sound" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "&Sound für Zwischenminuten:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Ruhezeiten" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "12-Stunden-Format" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "24-Stunden-Format" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "Zeit&format für die Ruhezeit:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Beginn der Ruhezeit" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Ende der Ruhezeit" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Stunde:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minute:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Wecker stellen" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "Stunden" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "Minuten" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "Sekunden" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "&Dauer des Weckers in:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Dauer:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "&Sound des Weckers:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Stoppen" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "An&halten" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" msgstr "" +"Sie haben einen Wecker ausgewählt, der in {tm} {unit} ausgelöst werden soll" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Bestätigung" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Es ist {hours} Uhr und {minutes} Minuten" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Es ist {hours} Uhr, {minutes} Minuten und {seconds} Sekunden" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} Uhr, {minutes} Minuten" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} Uhr, {minutes} Minuten, {seconds} Sekunden" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Es ist {minutes} nach {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} Std {minutes} Min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} Std, {minutes} Min, {seconds} Sek" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Es ist {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Es ist {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (24-Stunden-Format)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (12-Stunden-Format)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Eine erweiterte Uhr und ein Kalender für NVDA.\n" +"NVDA+F12: Aktuelle Uhrzeit abrufen.\n" +"NVDA+F12: Zweimal schnell drücken: Aktuelles Datum abrufen.\n" +"NVDA+F12: Dreimal schnell gedrückt: Zeigt den aktuellen Tag, die " +"Wochennummer, das aktuelle Jahr und die verbleibenden Tage bis zum " +"Jahresende an.\n" +"Um weitere Anweisungen zu erhalten, klicken Sie in \"Erweiterung verwalten\" " +"auf die Schaltfläche \"Hilfe\"." diff --git a/addon/locale/de_CH/LC_MESSAGES/nvda.po b/addon/locale/de_CH/LC_MESSAGES/nvda.po deleted file mode 100644 index 93cb63a..0000000 --- a/addon/locale/de_CH/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:45\n" -"Last-Translator: \n" -"Language-Team: German, Switzerland\n" -"Language: de_CH\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: de-CH\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/el/LC_MESSAGES/nvda.po b/addon/locale/el/LC_MESSAGES/nvda.po deleted file mode 100644 index 7b3795c..0000000 --- a/addon/locale/el/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:45\n" -"Last-Translator: \n" -"Language-Team: Greek\n" -"Language: el_GR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: el\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/en/LC_MESSAGES/nvda.po b/addon/locale/en/LC_MESSAGES/nvda.po deleted file mode 100644 index 24856e5..0000000 --- a/addon/locale/en/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: English\n" -"Language: en_US\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: en\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/es/LC_MESSAGES/nvda.po b/addon/locale/es/LC_MESSAGES/nvda.po index 9e33ffd..6f74816 100644 --- a/addon/locale/es/LC_MESSAGES/nvda.po +++ b/addon/locale/es/LC_MESSAGES/nvda.po @@ -1,469 +1,376 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:49\n" -"Last-Translator: \n" -"Language-Team: Spanish\n" -"Language: es_ES\n" +"Project-Id-Version: clock 19.01\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-13 15:50+1000\n" +"PO-Revision-Date: 2023-10-20 09:33+0200\n" +"Last-Translator: José Manuel Delicado \n" +"Language-Team: \n" +"Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: es-ES\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 3.4\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"El formato de fecha y hora que estabas usando no es compatible con esta " +"versión del complemento Reloj y se corregirá durante la instalación. Pulsa " +"Aceptar para confirmar estas correcciones" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Correcciones de formato de fecha y hora" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} horas, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minutos, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} segundos" + +msgid "0 seconds" +msgstr "0 segundos" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Reloj" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Programar a&larmas..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Te permite programar una alarma" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Verbaliza la hora actual. Si se pulsa dos veces rápidamente, verbaliza la " +"fecha actual. Si se pulsa tres veces rápidamente, anuncia el día actual, el " +"número de semana, el año actual y los días restantes para que acabe el año." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Día {day}, semana {week} de {year}, días restantes {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Órdenes de capa de Reloj y calendario. Después de pulsar este atajo, pulsa " +"la h para obtener más ayuda." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Inicia, restablece o detiene el cronómetro." + +msgid "Reset. Running." +msgstr "Restablecido. Funcionando." + +msgid "Running." +msgstr "Funcionando." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} detenido." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Verbaliza el cronómetro o contador de cuenta atrás actual." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Da el tiempo transcurrido y restante antes de la próxima alarma." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Tiempo transcurrido {elapsed}, tiempo restante {remaining}." + +msgid "No alarm" +msgstr "Sin alarma" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Cancelar la próxima alarma." + +msgid "Alarm cancelled" +msgstr "Alarma cancelada" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Pone el cronómetro a 0 sin reiniciarlo." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"El cronómetro ya se ha puesto a 0. Usa la orden de capa del reloj seguida de " +"la s para iniciarlo." + +msgid "Stopwatch reset." +msgstr "Restablecimiento de cronómetro." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Lista las órdenes disponibles en la capa de órdenes del reloj." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." msgstr "" +"Permite comprobar la próxima alarma. Si se pulsa dos veces, la cancela." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Si una alarma es demasiado larga, permite detenerla." + +msgid "No sound is launched." +msgstr "No se ha lanzado ningún sonido." + +msgid "Sound stopped" +msgstr "Sonido detenido" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "Ya está abierto el diálogo de programar alarmas." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Mostrar el cuadro de diálogo de configuración del reloj." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Mostrar el cuadro de diálogo de programación de alarmas." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "&Formato de hora:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "&Formato de fecha:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "desactivado" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "cada 10 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "cada 15 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "cada 30 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "cada hora" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&Intervalo:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "mensaje y sonido" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "sólo mensaje" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "sólo sonido" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "Anuncio de las &horas:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "Sonido de la &campana del reloj:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" -msgstr "" +msgstr "&Separar timbres de hora y minutos intermedios" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "Sonido de &timbre de minutos intermedios:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "Horas &silenciosas" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "formato de 12 horas" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "formato de 24 horas" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "&Formato de hora para las horas silenciosas:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Hora de inicio de las horas silenciosas" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Hora de finalización de las horas silenciosas" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Hora:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minuto:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Programar alarmas" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "horas" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "minutos" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "segundos" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "Duración de la &alarma en:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Duración:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "Sonido de &alarma:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Detener" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Pausa" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Has elegido activar una alarma en {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Confirmación" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Son las {hours} horas y {minutes} minutos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Son las {hours} horas, {minutes} minutos y {seconds} segundos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} horas, {minutes} minutos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} horas, {minutes} minutos, {seconds} segundos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Son las {hours} y {minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} h {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} h, {minutes} min, {seconds} seg" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Son las {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Son las {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (formato de 24 horas)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (formato de 12 horas)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Un reloj y calendario avanzado para NVDA.\n" +"NVDA+f12, obtener la hora actual.\n" +"NVDA+f12 pulsado dos veces rápidamente, conocer la fecha actual.\n" +"NVDA+f12 pulsado tres veces rápidamente, anuncia el día actual, número de " +"semana, el año actual y los días restantes para que se acabe.\n" +"Para más instrucciones, pulsa el botón de ayuda del complemento en el " +"administrador de complementos." diff --git a/addon/locale/es_CO/LC_MESSAGES/nvda.po b/addon/locale/es_CO/LC_MESSAGES/nvda.po deleted file mode 100644 index bf6ed5a..0000000 --- a/addon/locale/es_CO/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:49\n" -"Last-Translator: \n" -"Language-Team: Spanish, Colombia\n" -"Language: es_CO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: es-CO\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/et/LC_MESSAGES/nvda.po b/addon/locale/et/LC_MESSAGES/nvda.po deleted file mode 100644 index 59583d1..0000000 --- a/addon/locale/et/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: Estonian\n" -"Language: et_EE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: et\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/fa/LC_MESSAGES/nvda.po b/addon/locale/fa/LC_MESSAGES/nvda.po index 28f3c85..3d1146c 100644 --- a/addon/locale/fa/LC_MESSAGES/nvda.po +++ b/addon/locale/fa/LC_MESSAGES/nvda.po @@ -1,469 +1,378 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:47\n" -"Last-Translator: \n" -"Language-Team: Persian\n" -"Language: fa_IR\n" +"Project-Id-Version: Clock 18.12\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-13 15:50+1000\n" +"PO-Revision-Date: 2023-10-20 16:36+0330\n" +"Last-Translator: Mohammadreza Rashad \n" +"Language-Team: Mohammadreza Rashad \n" +"Language: fa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: fa\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 1.6.10\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"قالبی که برای نمایشِ زمان و تاریخ استفاده میکردید، با این نسخه از افزونه‌ی " +"ساعت سازگار نیست. این مشکل در هنگامِ نصب برطرف خواهد شد. لطفا OK را برای " +"انجامِ اصلاحات کلیک کنید." #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "تصحیحِ قالبِ نمایشِ زمان و تاریخ" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} ساعتُ " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} دقیقه ُ " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} ثانیه" + +msgid "0 seconds" +msgstr "۰ ثانیه" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "ساعت" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "زمانبندیِ ه&شدارها..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "اجازه میدهد تا یک هشدار تنظیم کنید." + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"زمان را اعلام میکند. اگر دو بار فشرده شود، تاریخ را اعلام میکند. اگر سه بار " +"فشرده شود، شماره‌ی روز، شماره‌ی هفته، سالِ جاری و تعدادِ روزهای باقی‌مانده از سال " +"را اعلام میکند." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "" +"روزِ {day}ُم، هفته‌ی {week}ُم از سالِ {year}. {remain} روز از سال باقی مانده." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"فرمان‌های لایه‌دارِ ساعت و تقویم. بعد از فِشُردَنِ این کلید، H را برای راهنمایی " +"بیشتر فشار دهید." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "زمانسنج را آغاز، متوقف یا بازتنظیم میکند." + +msgid "Reset. Running." +msgstr "بازتنظیم شد. درحالِ اجرا." + +msgid "Running." +msgstr "درحالِ اجرا." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} متوقف شد." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "زمانسنج یا تایمرِ معکوسِ جاری را میخوانَد." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "زمانِ گذشته و باقیمانده پیش از هشدارِ بعدی را بیان میکند." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "{elapsed} گذشته، {remaining} مانده." + +msgid "No alarm" +msgstr "هشداری موجود نیست" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "هشدارِ بعدی را لغو میکند." + +msgid "Alarm cancelled" +msgstr "هشدار لغو شد" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "زمانسنج را بدونِ راه‌اندازی ۰ میکند." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." msgstr "" +"زمانسنج قبلا ۰ شده است. از فرمانِ لایه‌دارِ ساعت بعلاوه‌ی S برای شروعِ آن استفاده " +"کنید." + +msgid "Stopwatch reset." +msgstr "زمانسنج بازتنظیم شد." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "فرمان‌های موجود در فرمانِ لایه‌دارِ ساعت را فهرست میکند." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "" +"اجازه میدهد تا هشدارِ بعدی را بررسی کنید. اگر دو بار فشرده شود، آن هشدار را " +"لغو میکند." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "اگر صدای هشدار طولانی باشد، اجازه میدهد تا متوقفش کنید." + +msgid "No sound is launched." +msgstr "صدایی بارگذاری نمیشود." + +msgid "Sound stopped" +msgstr "صدا متوقف شد." + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "پنجره‌ی زمانبندیِ هشدارها از قبل باز است." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "پنجره‌ی تنظیماتِ ساعت را نمایش میدهد." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "پنجره‌ی زمانبندیِ هشدارها را نمایش میدهد." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "قالبِ نمایشِ &زمان:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "قالبِ نمایشِ &تاریخ:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "خاموش" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "هر ۱۰ دقیقه" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "هر ۱۵ دقیقه" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "هر ۳۰ دقیقه" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "هر ساعت" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&دوره‌ی زمانی:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "پیام و صدا" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "فقط پیام" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "فقط صدا" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&اعلامِ زمان:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&صدای زنگِ ساعت:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" -msgstr "" +msgstr "جدا کردنِ صدای زنگِ ساعت و زنگِ دقیقه‌های میانی" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "&صدای زنگِ دقیقه‌های میانی" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "ساعات &بی‌صدا" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "قالب ۱۲ ساعتی" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "قالبِ ۲۴ ساعتی" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "&قالببندیِ زمانِ ساعاتِ بی‌صدا:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "زمانِ آغازِ ساعاتِ بی‌صدا" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "زمانِ پایانِ ساعاتِ بی‌صدا" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "ساعت:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "دقیقه:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "زمانبندیِ هشدارها" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "ساعت" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "دقیقه" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "۰ ثانیه" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "&زمانِ انتظار برای هشدار:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&مدت زمان" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "صدای ه&شدار:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&توقف" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&مکث" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "شما انتخاب کردید که ساعت {tm} {unit} بعد زنگ بزند." #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "تأیید" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "ساعت {hours}ُ {minutes} دقیقه است" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "ساعت {hours}ُ {minutes} دقیقه ُ {seconds} ثانیه است" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours}ُ {minutes} دقیقه" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours}ُ {minutes} دقیقه ُ {seconds} ثانیه" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "{minutes} دقیقه از {hours} گذشته" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} ساعتُ {minutes} دقیقه" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} ساعتُ {minutes} دقیقه ُ {seconds} ثانیه" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "{hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "{hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (قالبِ ۲۴ ساعتی)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (قالبِ ۱۲ ساعتی)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"یک ساعت و تقویمِ پیشرفته برای NVDA.\n" +"NVDA+F12 را برای شِنیدنِ زمانِ جاری یک بار،\n" +"برای شِنیدنِ تاریخِ جاری دو بار،\n" +"و برای شِنیدنِ روز جاری، شماره‌ی هفته، سالِ جاری، و روزهای باقی‌مانده تا پایانِ " +"سال سه بار بفشارید.\n" +"برای دستیابی به کارکردهای دیگر، دکمه‌ی راهنمای افزونه را در مدیرِ افزونه‌ها " +"فشار دهید." diff --git a/addon/locale/fi/LC_MESSAGES/nvda.po b/addon/locale/fi/LC_MESSAGES/nvda.po index fac91e7..bb12d1c 100644 --- a/addon/locale/fi/LC_MESSAGES/nvda.po +++ b/addon/locale/fi/LC_MESSAGES/nvda.po @@ -1,9 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2025-09-14 17:01+0000\n" +"PO-Revision-Date: 2025-10-13 00:58\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -15,455 +15,423 @@ msgstr "" "X-Crowdin-Project-ID: 780748\n" "X-Crowdin-Language: fi\n" "X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Crowdin-File-ID: 316\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 +#: addon/installTasks.py:24 msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" +msgstr "Käyttämäsi päivämäärän ja ajan näyttömuodot eivät ole yhteensopivia tämän Kello-lisäosaversion kanssa. Tämä korjataan asennuksen aikana. Vahvista korjaukset painamalla OK." #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 +#: addon/installTasks.py:28 msgid "Time and date format corrections" -msgstr "" +msgstr "Ajan ja päivämäärän näyttömuodon korjaukset" + +#: addon/globalPlugins/clock/__init__.py:73 +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} tuntia, " + +#: addon/globalPlugins/clock/__init__.py:75 +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minuuttia, " + +#: addon/globalPlugins/clock/__init__.py:77 +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} sekuntia" + +#: addon/globalPlugins/clock/__init__.py:78 +msgid "0 seconds" +msgstr "0 sekuntia" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. +#: addon/globalPlugins/clock/__init__.py:173 +#: addon/globalPlugins/clock/clockSettingsGUI.py:26 buildVars.py:23 msgid "Clock" -msgstr "" +msgstr "Kello" + +#. Translators: The name of the alarm item in NVDA Tools menu. +#: addon/globalPlugins/clock/__init__.py:186 +msgid "Schedule a&larms..." +msgstr "&Hälytysten ajoitus..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +#: addon/globalPlugins/clock/__init__.py:188 +msgid "Allows you to schedule an alarm" +msgstr "Tästä voit ajastaa hälytyksen" + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:251 +msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." +msgstr "Puhuu kerran painettaessa nykyisen kellonajan tai kahdesti painettaessa päivämäärän. Kolmesti painettaessa puhuu nykyisen päivän, viikon numeron ja kuluvan vuoden sekä sen jäljellä olevien päivien määrän." + +#: addon/globalPlugins/clock/__init__.py:273 +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Päivä {day}, viikko {week} vuonna {year}, päiviä jäljellä {remain}." + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:315 +msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." +msgstr "Kellon ja kalenterin komentokerroksen komennot. Saat lisäohjeita painamalla tämän komennon jälkeen H." + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:330 +msgid "Starts, resets or stops the stopwatch." +msgstr "Käynnistää, nollaa tai pysäyttää sekuntikellon." + +#: addon/globalPlugins/clock/__init__.py:336 +msgid "Reset. Running." +msgstr "Nollattu. Käynnissä." + +#: addon/globalPlugins/clock/__init__.py:339 +msgid "Running." +msgstr "Käynnissä." + +#: addon/globalPlugins/clock/__init__.py:342 +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} pysäytetty." + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:346 +msgid "Speaks current stopwatch or count-down timer." +msgstr "Puhuu sekuntikellon tai ajastimen jäljellä olevan ajan." + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:353 +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Ilmoittaa kuluneen ja jäljellä olevan ajan ennen seuraavaa hälytystä." + +#: addon/globalPlugins/clock/__init__.py:360 +#: addon/globalPlugins/clock/__init__.py:411 +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Aikaa kulunut {elapsed}, aikaa jäljellä {remaining}." + +#: addon/globalPlugins/clock/__init__.py:363 +#: addon/globalPlugins/clock/__init__.py:375 +#: addon/globalPlugins/clock/__init__.py:414 +msgid "No alarm" +msgstr "Ei hälytystä" + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:368 +msgid "Cancel the next alarm." +msgstr "Peruuttaa seuraavan hälytyksen." + +#: addon/globalPlugins/clock/__init__.py:373 +#: addon/globalPlugins/clock/__init__.py:408 +msgid "Alarm cancelled" +msgstr "Hälytys peruutettu" + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:380 +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Nollaa sekuntikellon käynnistämättä sitä uudelleen." + +#: addon/globalPlugins/clock/__init__.py:385 +msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." +msgstr "Sekuntikello on jo nollattu. Käynnistä se painamalla Kellon komentokerroskomentoa ja sitten S." + +#: addon/globalPlugins/clock/__init__.py:389 +msgid "Stopwatch reset." +msgstr "Sekuntikello nollattu." + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:393 +msgid "Lists available commands in clock command layer." +msgstr "Näyttää luettelon käytettävissä olevista Kellon komentokerroksen komennoista." + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:400 +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "Ilmoittaa kerran painettaessa seuraavan hälytyksen ajankohdan tai kahdesti painettaessa peruuttaa sen." + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:419 +msgid "If an alarm is too long, allows to stop it." +msgstr "Lopettaa hälytyksen, mikäli se kestää liian kauan." + +#: addon/globalPlugins/clock/__init__.py:422 +msgid "No sound is launched." +msgstr "Hälytysääntä ei soiteta." + +#: addon/globalPlugins/clock/__init__.py:425 +msgid "Sound stopped" +msgstr "Hälytysäänen soitto lopetettu" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +#: addon/globalPlugins/clock/__init__.py:438 +msgid "Schedule alarms dialog is already open." +msgstr "Hälytystenajoitusvalintaikkuna on jo avoinna." + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:444 +msgid "Display the clock settings dialog box." +msgstr "Näyttää Kellon asetukset -valintaikkunan." + +#. Translators: Message presented in input help mode. +#: addon/globalPlugins/clock/__init__.py:451 +msgid "Display schedule alarms dialog box." +msgstr "Näyttää hälytysten ajoitusvalintaikkunan." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 +#: addon/globalPlugins/clock/clockSettingsGUI.py:30 msgid "&Time display format:" -msgstr "" +msgstr "&Ajan näyttömuoto:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 +#: addon/globalPlugins/clock/clockSettingsGUI.py:33 msgid "&Date display format:" -msgstr "" +msgstr "&Päivämäärän näyttömuoto:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 +#: addon/globalPlugins/clock/clockSettingsGUI.py:37 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "ei käytössä" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 +#: addon/globalPlugins/clock/clockSettingsGUI.py:39 msgid "every 10 minutes" -msgstr "" +msgstr "10 minuutin välein" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 +#: addon/globalPlugins/clock/clockSettingsGUI.py:41 msgid "every 15 minutes" -msgstr "" +msgstr "15 minuutin välein" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 +#: addon/globalPlugins/clock/clockSettingsGUI.py:43 msgid "every 30 minutes" -msgstr "" +msgstr "30 minuutin välein" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 +#: addon/globalPlugins/clock/clockSettingsGUI.py:45 msgid "every hour" -msgstr "" +msgstr "tunnin välein" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 +#: addon/globalPlugins/clock/clockSettingsGUI.py:49 msgid "&Interval:" -msgstr "" +msgstr "Kellonaika i&lmoitetaan:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 +#: addon/globalPlugins/clock/clockSettingsGUI.py:53 msgid "message and sound" -msgstr "" +msgstr "puheella ja äänellä" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 +#: addon/globalPlugins/clock/clockSettingsGUI.py:55 msgid "message only" -msgstr "" +msgstr "vain puheella" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 +#: addon/globalPlugins/clock/clockSettingsGUI.py:57 msgid "sound only" -msgstr "" +msgstr "vain äänellä" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 +#: addon/globalPlugins/clock/clockSettingsGUI.py:61 msgid "Time &announcement:" -msgstr "" +msgstr "Kellonajan &ilmoittaminen:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 +#: addon/globalPlugins/clock/clockSettingsGUI.py:64 msgid "Clock chime &sound:" -msgstr "" +msgstr "Ke&llon ääni:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 +#: addon/globalPlugins/clock/clockSettingsGUI.py:67 msgid "&Separate hour and intermediate minute chimes" -msgstr "" +msgstr "Er&illiset tunnin ja puolen tunnin ilmoitusäänet" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 +#: addon/globalPlugins/clock/clockSettingsGUI.py:70 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "Puolen tunnin i&lmoitusääni:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 +#: addon/globalPlugins/clock/clockSettingsGUI.py:73 msgid "&Quiet hours" -msgstr "" +msgstr "&Hiljaiset tunnit" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 +#: addon/globalPlugins/clock/clockSettingsGUI.py:77 msgid "12-hour format" -msgstr "" +msgstr "12 tunnin muoto" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 +#: addon/globalPlugins/clock/clockSettingsGUI.py:79 msgid "24-hour format" -msgstr "" +msgstr "24 tunnin muoto" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 +#: addon/globalPlugins/clock/clockSettingsGUI.py:83 msgid "Quiet hours time &format:" -msgstr "" +msgstr "Hiljaisten tuntien ajan &muoto:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 +#: addon/globalPlugins/clock/clockSettingsGUI.py:92 msgid "Quiet hours start time" -msgstr "" +msgstr "Hiljaisten tuntien alkamisaika" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 +#: addon/globalPlugins/clock/clockSettingsGUI.py:95 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Hiljaisten tuntien päättymisaika" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 +#: addon/globalPlugins/clock/clockSettingsGUI.py:139 +#: addon/globalPlugins/clock/clockSettingsGUI.py:151 msgid "Hour:" -msgstr "" +msgstr "Tunnit:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 +#: addon/globalPlugins/clock/clockSettingsGUI.py:143 +#: addon/globalPlugins/clock/clockSettingsGUI.py:155 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minuutit:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 +#: addon/globalPlugins/clock/clockSettingsGUI.py:295 msgid "Schedule alarms" -msgstr "" +msgstr "Hälytysten ajoitus" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 +#: addon/globalPlugins/clock/clockSettingsGUI.py:301 msgid "hours" -msgstr "" +msgstr "tunnit" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 +#: addon/globalPlugins/clock/clockSettingsGUI.py:303 msgid "minutes" -msgstr "" +msgstr "minuutit" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 +#: addon/globalPlugins/clock/clockSettingsGUI.py:305 msgid "seconds" -msgstr "" +msgstr "sekunnit" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 +#: addon/globalPlugins/clock/clockSettingsGUI.py:309 msgid "&Alarm duration in:" -msgstr "" +msgstr "Hälytyksen keston yksikkö:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 +#: addon/globalPlugins/clock/clockSettingsGUI.py:312 msgid "&Duration:" -msgstr "" +msgstr "&Kesto:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 +#: addon/globalPlugins/clock/clockSettingsGUI.py:315 msgid "A&larm sound:" -msgstr "" +msgstr "Häl&ytysääni:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 +#: addon/globalPlugins/clock/clockSettingsGUI.py:318 msgid "&Stop" -msgstr "" +msgstr "P&ysäytä" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 +#: addon/globalPlugins/clock/clockSettingsGUI.py:321 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Keskeytä" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 +#: addon/globalPlugins/clock/clockSettingsGUI.py:390 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Hälytyksen alkamiseen {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 +#: addon/globalPlugins/clock/clockSettingsGUI.py:393 msgid "Confirmation" -msgstr "" +msgstr "Vahvistus" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 +#: addon/globalPlugins/clock/formats.py:71 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Kello on {minutes} yli {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 +#: addon/globalPlugins/clock/formats.py:73 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Kello on {minutes} ja {seconds} yli {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 +#: addon/globalPlugins/clock/formats.py:77 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours}.{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 +#: addon/globalPlugins/clock/formats.py:79 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours}.{minutes}.{seconds}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 +#: addon/globalPlugins/clock/formats.py:83 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "{minutes} yli {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 +#: addon/globalPlugins/clock/formats.py:85 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 +#: addon/globalPlugins/clock/formats.py:87 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours}:{minutes}:{seconds}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 +#: addon/globalPlugins/clock/formats.py:89 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Kello on {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 +#: addon/globalPlugins/clock/formats.py:91 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Kello on {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 +#: addon/globalPlugins/clock/formats.py:108 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (24 tunnin muoto)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 +#: addon/globalPlugins/clock/formats.py:110 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (12 tunnin muoto)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +#: buildVars.py:26 msgid "An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" "NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "Edistynyt kello ja kalenteri NVDA:lle.\n" +"NVDA+F12: puhuu nykyisen kellonajan.\n" +"NVDA+F12 kahdesti painettaessa: puhuu nykyisen päivämäärän.\n" +"NVDA+F12 kolmesti painettaessa: puhuu nykyisen päivän, viikon numeron, kuluvan vuoden sekä sen jäljellä olevien päivien määrän.\n" +"Muita ohjeita saat painamalla Lisäosien hallinnassa Ohje-painiketta." diff --git a/addon/locale/fr/LC_MESSAGES/nvda.po b/addon/locale/fr/LC_MESSAGES/nvda.po index 8877684..16d1566 100644 --- a/addon/locale/fr/LC_MESSAGES/nvda.po +++ b/addon/locale/fr/LC_MESSAGES/nvda.po @@ -1,469 +1,379 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: French\n" -"Language: fr_FR\n" +"Project-Id-Version: clock 19.01.2\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-13 15:50+1000\n" +"PO-Revision-Date: 2023-10-20 22:26+0200\n" +"Last-Translator: Cyrille Bougot \n" +"Language-Team: \n" +"Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: fr\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 3.2.2\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Les formats de date et d’heure que vous utilisiez ne sont pas compatibles " +"avec cette version de l'extension Horloge, ce problème sera résolu lors de " +"l’installation. Cliquez sur OK pour confirmer ces corrections" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Correction du format de l'heure et de la date" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} heures, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minutes, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} secondes" + +msgid "0 seconds" +msgstr "0 seconde" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Horloge" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Programmer des a&larmes..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Vous permet de programmer une alarme" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Annonce l'heure actuelle. Si vous appuyez deux fois rapidement, annonce la " +"date actuelle. Si vous appuyez trois fois rapidement, annonce le jour " +"actuel, le numéro de la semaine, l'année en cours et les jours qui restent " +"avant la fin de l'année." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Jour {day}, semaine {week} de l'année {year}, jours restants {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Commandes séquentielles de l'horloge et du calendrier. Après avoir appuyé " +"sur cette touche, appuyez sur H pour obtenir de l'aide supplémentaire." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Démarre, réinitialise ou arrête le chronomètre." + +msgid "Reset. Running." +msgstr "Réinitialiser. En cours d'exécution." + +msgid "Running." +msgstr "En cours d'exécution." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} arrêté." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Annonce le chronomètre actuel ou le compte à rebours de la minuterie." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Donne le temps restant et écoulé avant la prochaine alarme." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Temps écoulé {elapsed}, temps restant {remaining}." + +msgid "No alarm" +msgstr "Pas d'alarme" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Annule la prochaine alarme." + +msgid "Alarm cancelled" +msgstr "Alarme annulée" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Réinitialise le chronomètre à 0 sans le démarrer." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"Le chronomètre est déjà réinitialisé à 0. Utilisez la commande séquentielle " +"de l'horloge suivie de s pour le démarrer." + +msgid "Stopwatch reset." +msgstr "Chronomètre réinitialisé." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Répertorie les commandes séquentielles de l'horloge disponibles." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." msgstr "" +"Permet de vérifier la prochaine alarme. Si vous appuyez deux fois, l'annule." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Si une alarme est trop longue, permet de l'arrêter." + +msgid "No sound is launched." +msgstr "Aucun son n'est lancé." + +msgid "Sound stopped" +msgstr "Son arrêté" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "La boîte de dialogue Programmer des alarmes est déjà ouverte." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Afficher la boîte de dialogue des paramètres de l'horloge." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Afficher la boîte de dialogue Programmer des alarmes." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "Format d'affichage de l'&heure :" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "Format d'affichage de la &date :" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "désactivé" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "toutes les 10 minutes" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "toutes les 15 minutes" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "toutes les 30 minutes" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "toutes les heures" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&intervalle :" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "message et son" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "message seulement" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "son seulement" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&Annonce de l'heure :" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&Son de carillon d'horloge :" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" msgstr "" +"Carillons d'horloge &séparés pour les heures et les minutes intermédiaires" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "&Son de carillon d'horloge des minutes intermédiaires :" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "H&eures silencieuses" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "format 12 heures" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "format 24 heures" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "&Format des heures silencieuses :" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Début de la durée des heures silencieuses" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Heure de fin des heures silencieuses" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Heure:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minute:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Programmer des alarmes" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "heures" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "minutes" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "secondes" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "D&urée de l'alarme en:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Durée:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "Son de l'a&larme :" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Arrêter" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Pause" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Vous avez choisi une alarme à déclencher dans {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Confirmation" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Il est {hours} heures et {minutes} minutes" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Il est {hours} heures, {minutes} minutes et {seconds} secondes" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} heures, {minutes} minutes" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} heures, {minutes} minutes, {seconds} secondes" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Il est {hours} heures {minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} h {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} h, {minutes} min, {seconds} sec" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Il est {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Il est {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (format 24 heures)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (format 12 heures)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Une horloge et un calendrier avancés pour NVDA.\n" +"NVDA+F12, pour obtenir l'heure actuelle.\n" +"NVDA+F12 appuyé deux fois rapidement, pour obtenir la date actuelle.\n" +"NVDA+F12 appuyé trois fois rapidement, pour annoncer le jour actuel, le " +"numéro de la semaine, l'année en cours et les jours qui restent avant la fin " +"de l'année.\n" +"Pour d'autres instructions, appuyez sur le bouton Aide de cette extension, " +"dans le Gestionnaire des extensions." diff --git a/addon/locale/ga/LC_MESSAGES/nvda.po b/addon/locale/ga/LC_MESSAGES/nvda.po deleted file mode 100644 index c465d19..0000000 --- a/addon/locale/ga/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:46\n" -"Last-Translator: \n" -"Language-Team: Irish\n" -"Language: ga_IE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ga-IE\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/gl/LC_MESSAGES/nvda.po b/addon/locale/gl/LC_MESSAGES/nvda.po index 33e11c0..45fa2ab 100644 --- a/addon/locale/gl/LC_MESSAGES/nvda.po +++ b/addon/locale/gl/LC_MESSAGES/nvda.po @@ -1,469 +1,376 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: Galician\n" -"Language: gl_ES\n" +"Project-Id-Version: clock 18.12\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-13 15:50+1000\n" +"PO-Revision-Date: 2022-08-03 13:01+0200\n" +"Last-Translator: Iván Novegil Cancelas \n" +"Language-Team: \n" +"Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: gl\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 3.1.1\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"O formato de data e hora que viñas utilizando non é compatible coa versión " +"actual do complemento Clock, arranxarase durante a instalación. Preme OK " +"para confirmar estas correccións" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Correccións no formato de hora e data" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} horas, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minutos, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} segundos" + +msgid "0 seconds" +msgstr "0 segundos" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Clock" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Programar a&larmas..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Permíteche programar unha alarma" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Anuncia a hora actual. Se se preme dúas veces rapidamente, anuncia a data " +"actual. Se se preme tres veces rapidamente, anuncia o número de día actual, " +"de semana, o ano actual e os días restantes antes do final de ano." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Día {day}, semana {week} de {year}, días restantes {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." msgstr "" +"Orde de capa de reloxo e calendario. Despois de utilizar este atallo, prema " +"H para axuda adicional." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Inicia, rinicia ou detén o cronómetro." + +msgid "Reset. Running." +msgstr "Reiniciado. Correndo." + +msgid "Running." +msgstr "Correndo." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} detido." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Fala o temporizador actual do cronómetro ou da conta atrás." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Fornece o tempo restante e transcorrido antes da vindeira alarma." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Tempo transcorrido {elapsed}, tempo restante {remaining}." + +msgid "No alarm" +msgstr "Sen alarma" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Cancelar a vindeira alarma." + +msgid "Alarm cancelled" +msgstr "Alarma cancelada" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Restablece o cronómetro a 0 sen reinicialo." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"O cronómetro xa está restablecido a 0. Utiliza o comando de capa seguido de " +"s para inicialo." + +msgid "Stopwatch reset." +msgstr "Cronómetro reiniciado." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Lista todos as ordes dispoñibles na capa de comandos do reloxo." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "" +"Permíteche comprobar a vindeira alarma. Se se preme dúas veces, cancélaa." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Se unha alarma e demasiado longa, permíteche parala." + +msgid "No sound is launched." +msgstr "Non se reproduce son." + +msgid "Sound stopped" +msgstr "Son detido" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "O diálogo de programación de alarmas xa está aberto." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Amosar a caixa de diálogo de opcións do reloxo." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Amosar a caixa de diálogo de programación de alarmas." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "Formato de amosado da &hora:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "Formato de amosado da &data:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "desactivado" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "dada 10 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "cada 15 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "cada 30 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "cada hora" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&Intervalo:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "mensaxe e son" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "só mensaxe" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "só son" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&Anunciado da hora:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&Son da campá do reloxo:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" msgstr "" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" msgstr "" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "Horas &caladas" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "formato de 12 horas" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "formato de 24 horas" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "&Formato de hora para as horas caladas:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Hora de inicio das horas caladas" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Hora de finalización das horas caladas" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Hora:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minuto:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Programar alarmas" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "horas" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "minutos" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "segundos" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "Duración da &alarma en:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Duración:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "&Son da alarma:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Deter" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Pausar" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Escolliches que a alarma salte en {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Confirmación" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Son ás {hours} horas e {minutes} minutos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Son as {hours} horas, {minutes} minutos e {seconds} segundos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} horas, {minutes} minutos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} horas, {minutes} minutos, {seconds} segundos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Son as {hours} e {minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} h {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} h, {minutes} min, {seconds} seg" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Son as {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Son as {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (formato de 24 horas)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (formato de 12 horas)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Un reloxo e calendario avanzado para NVDA.\n" +"NVDA+F12, obter hora actual.\n" +"NVDA+F12 premido dúas veces rapidamente, obter data actual.\n" +"NVDA+F12 premido tres veces rapidamente, anuncia o número de cía actual, de " +"semana, o ano actual e os días restantes antes do final de ano.\n" +"Para outras instrucións, preme o botón Axuda do complemento no Administrador " +"de complementos." diff --git a/addon/locale/he/LC_MESSAGES/nvda.po b/addon/locale/he/LC_MESSAGES/nvda.po index b66062b..614ed3e 100644 --- a/addon/locale/he/LC_MESSAGES/nvda.po +++ b/addon/locale/he/LC_MESSAGES/nvda.po @@ -1,469 +1,410 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:45\n" -"Last-Translator: \n" -"Language-Team: Hebrew\n" -"Language: he_IL\n" +"Project-Id-Version: clock 19.06\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2019-05-31 03:15+1000\n" +"PO-Revision-Date: 2019-06-20 15:21+0200\n" +"Last-Translator: shmuel naaman \n" +"Language-Team: Shmuel naaman \n" +"Language: he\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: he\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 1.6.10\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"תבנית התאריך והשעה שבהם השתמשת אינה מתאימה לגרסה זו של תוסף השעון, בעיה זו " +"תתוקן במהלך ההתקנה. לחץ OK לאישור התיקונים" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "תיקוני תאריך ושעה" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} שעות," + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} דקות," + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} שניות" + +msgid "0 seconds" +msgstr "0 שניות" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "שעון" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "" + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "אפשר לתזמן שעון מעורר" + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"אומר את הזמן הנוכחי. אם נלחץ פעמיים במהירות, אומר את התאריך הנוכחי. אם נלחץ " +"שלוש פעמים ברצף, מדווח את היום הנוכחי, מספר השבוע, השנה הנוכחית והימים " +"שנותרו עד סוף השנה." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "יום {day}, שבוע {week} של {year}, ימים נותרים {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"שכבת פקודות של השעון ולוח השנה. לאחר לחיצה על מקש זה, לחץ על H לקבלת עזרה " +"נוספת." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "התחל, אפס או עצור את הסטופר." + +msgid "Reset. Running." +msgstr "איפוס. ריצה." + +msgid "Running." +msgstr "פועל." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} נעצר." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "אומר את הסטופר הנוכחי את שעון הספירה לאחור." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "נותן את הזמן שנותר וחלף לפני ההתראה הבאה." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "הזמן שחלף {elapsed}, הזמן שנותר {remaining}" + +msgid "No alarm" +msgstr "ללא שעון מעורר" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "בטל את השעון המעורר הבא." + +msgid "Alarm cancelled" +msgstr "שעון מעורר בוטל" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "מאפס את הסטופר ל -0 ללא הפעלה מחדש." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"הסטופר כבר אותחל ל 0. השתמש בפקודת שכבת השעון ואחריה s כדי להפעיל אותה." + +msgid "Stopwatch reset." +msgstr "איפוס סטופר." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "רשימות פקודות זמינות בשכבת פקודת השעון." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "מאפשר לבדוק את התראת השעון המעורר הבאה. אם נלחץ פעמיים, בטל אותה." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "אם השעון מעורר ארוך מידי, ניתן לעצור אותו." + +msgid "No sound is launched." +msgstr "שום צליל לא הושק." + +msgid "Sound stopped" +msgstr "קול הופסק" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." msgstr "" +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "הצג את חלון הגדרות השעון." + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "Display schedule alarms dialog box." +msgstr "הצג את חלון ההגדרות של השעון המעורר." + #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "תבנית תצוגת ה&זמן:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "תבנית תצוגת ה&תאריך:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" +msgstr "כבוי" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "כל 10 דקות" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "כל 15 דקות" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "כל 30 דקות" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "כל שעה" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 +#, fuzzy msgid "&Interval:" -msgstr "" +msgstr "&מרווח:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 +#, fuzzy msgid "message and sound" -msgstr "" +msgstr "דיבור וקול" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 +#, fuzzy msgid "message only" -msgstr "" +msgstr "דיבור בלבד" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "קול בלבד" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "זמן &הכרזה:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "צליל צלצול השעון:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&שעות שקטות" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 +#, fuzzy msgid "12-hour format" -msgstr "" +msgstr "קלט בפורמט של 24 שעות" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 +#, fuzzy msgid "24-hour format" -msgstr "" +msgstr "קלט בפורמט של 24 שעות" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 +#, fuzzy msgid "Quiet hours time &format:" -msgstr "" +msgstr "סיום זמן השעות השקטות:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 +#, fuzzy msgid "Quiet hours start time" -msgstr "" +msgstr "התחלת זמן השעות השקטות:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 +#, fuzzy msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "סיום זמן השעות השקטות:" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 +#, fuzzy msgid "Hour:" -msgstr "" +msgstr "שעות" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 +#, fuzzy msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "דקות" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" msgstr "" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 +#, fuzzy msgid "hours" -msgstr "" +msgstr "שעות" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 +#, fuzzy msgid "minutes" -msgstr "" +msgstr "דקות" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 +#, fuzzy msgid "seconds" -msgstr "" +msgstr "0 שניות" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 +#, fuzzy msgid "&Alarm duration in:" -msgstr "" +msgstr "זמן ההמתנה של השעון מעורר:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" msgstr "" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "קול שעון מעורר:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&עצור" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&השהייה" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "בחרת התראה שתוצג ב {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "אישור" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "השעה {hours} ו- {minutes} דקות" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "השעה {hours} שעה, {minutes} דקות ו- {seconds} שניות" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} שעה, {minutes} דקות" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} שעה, {minutes} דקות, {seconds} שניות" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 +#. Translators: A time formating. #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "זה {minutes} חלפו {hours}" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} שעות {minutes} דקות" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} שעות, {minutes} דקות, {seconds} שניות" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "זה {hours}:{minutes}" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "זה {hours}:{minutes}:{seconds}" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +#, fuzzy +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"שעון ולוח שנה מקדמים עבור NVDA. \n" +"\v\vNVDA+F12 קבלת הזמן הנוכחי. \n" +"\vNVDA+F12 נלחץ פעמיים המהירות, קבלת התאריך הנוכחי. \n" +"\vNVDA+F12 נלחץ שלוש פעמים במהירות, מדווח על היום הנוכחי, מספר השבוע, השנה " +"הנוכחית ומספר הימים הנותרים לסיום השנה.\n" +"לקבלת הוראות אחרות, לחץ על לחצן עזרת התוסף במנהל התוספים." + +#~ msgid "Clock se&ttings..." +#~ msgstr "הגדרות &שעון..." + +#~ msgid "Clock and calendar setup" +#~ msgstr "הגדרת שעון ולוח שנה" + +#~ msgid "Clock setup" +#~ msgstr "הגדרת שעון" + +#~ msgid "Clock setup for times and dates" +#~ msgstr "הגדרת שעון עבור זמנים ותאריכים" + +#~ msgid "Alarm settin&gs" +#~ msgstr "הגדרות &שעון מעורר" + +#~ msgid "" +#~ "The value you entered for your quiet hours is erroneous, for a 24-hour " +#~ "format, the value must be HH:MM, for a 12-hour format, the value must be " +#~ "HH:MM followed by the AM or PM suffix, please reread the documentation. " +#~ "So your quiet hours have been deactivated for prevent any error in the " +#~ "configuration file." +#~ msgstr "" +#~ "הערך שהכנסת עבור שעות השקט שלך הוא שגוי, עבור הפורמט של 24 שעות, הערך " +#~ "חייב להיות HH:MM, עבור פורמט של 12 שעות, הערך חייב להיות HH:MM ואחריו " +#~ "סיומת של AM או PM, אנא קרא שוב את התיעוד. השעות השקטות של הופסקו כדי " +#~ "למנוע שגיאות הקובץ התצורה." + +#~ msgid "Error" +#~ msgstr "שגיאה" + +#~ msgid "Alarm setup" +#~ msgstr "הגדרת שעון מעורר" + +#~ msgid "Seconds" +#~ msgstr "שניות" + +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "בחר את סוג ה&קלטים של הטיימר לפני צלצול השעון מעורר:" diff --git a/addon/locale/hi/LC_MESSAGES/nvda.po b/addon/locale/hi/LC_MESSAGES/nvda.po index cf6de2f..ef87206 100644 --- a/addon/locale/hi/LC_MESSAGES/nvda.po +++ b/addon/locale/hi/LC_MESSAGES/nvda.po @@ -1,469 +1,410 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:45\n" +"Project-Id-Version: clock 18.12.1\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-28 03:15+1000\n" +"PO-Revision-Date: 2019-07-14 12:25+0530\n" "Last-Translator: \n" -"Language-Team: Hindi\n" -"Language: hi_IN\n" +"Language-Team: \n" +"Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: hi\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 2.2.3\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"आपके द्वारा उपयोग किया जा रहा दिनांक और समय प्रारूप क्लॉक ऐड-ऑन के इस संस्करण के साथ " +"संगत नहीं है, यह स्थापना के दौरान ठीक किया जाएगा। इन सुधारों की पुष्टि करने के लिए ओके " +"क्लिक करें" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "समय और दिनांक प्रारूप सुधार" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} बजे, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} मिनट, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} सेकंड" + +msgid "0 seconds" +msgstr "0 सेकंड" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "घड़ी" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "" + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "आपको अलार्म सेट करने देता है" + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"वर्तमान समय बताता है। यदि दो बार जल्दी से दबाया जाता है, तो वर्तमान तिथि बताता है। " +"यदि तीन बार जल्दी से दबाया जाता है, तो वर्तमान दिन, सप्ताह का नंबर , वर्तमान वर्ष और " +"वर्ष के अंत से पहले शेष दिनों की रिपोर्ट करता है." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "दिन {day}, {year} का सप्ताह {week} , शेष दिन {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"क्लॉक और कैलेंडर लेयर कमांड। इस की स्ट्रोक को दबाने के बाद, अतिरिक्त सहायता के लिए एच " +"की दबाएँ." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "स्टॉपवॉच शुरू करता है, रीसेट करता है या बंद करता है." + +msgid "Reset. Running." +msgstr "रीसेट। चल रहा है." + +msgid "Running." +msgstr "चल रहा है." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} रुका हुआ." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "वर्तमान स्टॉपवॉच या काउंट-डाउन टाइमर बोलता है." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "अगले अलार्म से पहले शेष और बीता हुआ समय देता है." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "बीता हुआ समय {elapsed}, शेष समय {remaining}." + +msgid "No alarm" +msgstr "कोई अलार्म नहीं" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "अगला अलार्म रद्द करें." + +msgid "Alarm cancelled" +msgstr "अलार्म रद्द कर दिया गया" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "इसे पुनः आरंभ किए बिना स्टॉपवॉच को 0 पर रीसेट करता है." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"स्टॉपवॉच पहले से ही 0 पर रीसेट है। इसे शुरू करने के लिए क्लॉक लेयर कमांड का उपयोग करें." + +msgid "Stopwatch reset." +msgstr "स्टॉपवॉच रीसेट." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "उपलब्ध कमांड को क्लॉक कमांड लेयर में दिखाता है." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." msgstr "" +"अगले अलार्म की जांच करने देता है। यदि दो बार दबाया जाता है, तो इसे रद्द कर देता है." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "यदि कोई अलार्म बहुत लंबा हो , तो उसे रोकने की अनुमति देता है." + +msgid "No sound is launched." +msgstr "कोई ध्वनि चालू नहीं की गई है." + +msgid "Sound stopped" +msgstr "ध्वनि रुक गई" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "" + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "घड़ी सेटिंग्स संवाद बॉक्स दिखाता." + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "Display schedule alarms dialog box." +msgstr "अलार्म सेटिंग्स संवाद बॉक्स दिखाता." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "&Time समय प्रदर्शन प्रारूप:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "&Date दिनांक प्रदर्शन प्रारूप:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "बंद" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "हर 10 मिनट में" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "हर 15 मिनट में" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "हर 30 मिनट में" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "प्रत्येक घंटे" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 +#, fuzzy msgid "&Interval:" -msgstr "" +msgstr "&interval:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 +#, fuzzy msgid "message and sound" -msgstr "" +msgstr "बोल और ध्वनि" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 +#, fuzzy msgid "message only" -msgstr "" +msgstr "सिर्फ बोल" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "सिर्फ ध्वनि" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "समय &announcement:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "घड़ी chime &sound:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Quiet घंटे" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 +#, fuzzy msgid "12-hour format" -msgstr "" +msgstr "24 घंटे के प्रारूप में इनपुट &24-hour" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 +#, fuzzy msgid "24-hour format" -msgstr "" +msgstr "24 घंटे के प्रारूप में इनपुट &24-hour" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 +#, fuzzy msgid "Quiet hours time &format:" -msgstr "" +msgstr "शांत समय समाप्त होने का समय:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 +#, fuzzy msgid "Quiet hours start time" -msgstr "" +msgstr "शांत समय प्रारंभ समय:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 +#, fuzzy msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "शांत समय समाप्त होने का समय:" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 +#, fuzzy msgid "Hour:" -msgstr "" +msgstr "घंटे" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 +#, fuzzy msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "मिनट" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" msgstr "" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 +#, fuzzy msgid "hours" -msgstr "" +msgstr "घंटे" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 +#, fuzzy msgid "minutes" -msgstr "" +msgstr "मिनट" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 +#, fuzzy msgid "seconds" -msgstr "" +msgstr "0 सेकंड" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 +#, fuzzy msgid "&Alarm duration in:" -msgstr "" +msgstr "अलार्म समय &time प्रतीक्षा में:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" msgstr "" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "A&larm ध्वनि:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Stop" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Pause" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "आपने {tm} {unit} अलार्म चालू होना चुना है" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "पुष्टीकरण" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "यह {hours} बजे और {minutes} मिनट है" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "यह {hours} बजे {minutes} मिनट और {seconds} सेकंड्‌स है" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} बजे {minutes} मिनट" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} बजे {minutes} मिनट और {seconds} सेकंड्‌स" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 +#. Translators: A time formating. #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "{hours} बज कर {minutes} मिनट" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} बजे {minutes} मिनट" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} बजे {minutes} मिनट और {seconds} सेकंड्‌स" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "यह {hours} बजे: {minutes} मिनट है" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" +msgstr "यह {hours} बजे {minutes} मिनट और {seconds} सेकंड्‌स है" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." +#. Add-on description +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +#, fuzzy +msgid "" +"An advanced clock and calendar for NVDA.\n" +"NVDA+F12, get current time.\n" +"NVDA+F12 pressed twice quickly, get current date.\n" +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." msgstr "" +"एनवीडीए के लिए एक उन्नत घड़ी और कैलेंडर\n" +"एनवीडीए + ऍफ़ 12, वर्तमान समय प्राप्त करें \n" +"एनवीडीए + एफ़ 12, दो बार जल्दी से दबाने पर, वर्तमान तिथि प्राप्त करें \n" +"एनवीडीए + एफ़ 12, तीन बार जल्दी से दबाने पर, वर्तमान दिन, सप्ताह का नंबर , वर्तमान " +"वर्ष और वर्ष के अंत से पहले शेष दिनों को रिपोर्ट करता है." -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" +#~ msgid "Clock se&ttings..." +#~ msgstr "घड़ी की सेटिंग्स se&ttings..." -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" +#~ msgid "Clock and calendar setup" +#~ msgstr "घड़ी और कैलेंडर सेटअप" -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" +#~ msgid "Clock setup" +#~ msgstr "घड़ी सेटअप" -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" +#~ msgid "Clock setup for times and dates" +#~ msgstr "समय और दिनांक के लिए घड़ी सेटअप" -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" +#~ msgid "Alarm settin&gs" +#~ msgstr "अलार्म settin&gs" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" +#~ msgid "" +#~ "The value you entered for your quiet hours is erroneous, for a 24-hour " +#~ "format, the value must be HH:MM, for a 12-hour format, the value must be " +#~ "HH:MM followed by the AM or PM suffix, please reread the documentation. " +#~ "So your quiet hours have been deactivated for prevent any error in the " +#~ "configuration file." +#~ msgstr "" +#~ "आपके शांत घंटों के लिए दर्ज किया गया मान गलत है, 24 घंटे के प्रारूप के लिए, मान घंटे:" +#~ "मिनट होना चाहिए: 12 घंटे के प्रारूप के लिए, मान घंटे:मिनट, साथ में ऐम या पीम " +#~ "होना चाहिए." -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +#~ msgid "Error" +#~ msgstr "त्रुटि" -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" +#~ msgid "Alarm setup" +#~ msgstr "अलार्म सेटअप" -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" +#~ msgid "Seconds" +#~ msgstr "सेकंड" +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "अलार्म बजने से पहले टाइमर का प्रकार &inputs चुनें:" diff --git a/addon/locale/hr/LC_MESSAGES/nvda.po b/addon/locale/hr/LC_MESSAGES/nvda.po index 3dc9111..797d438 100644 --- a/addon/locale/hr/LC_MESSAGES/nvda.po +++ b/addon/locale/hr/LC_MESSAGES/nvda.po @@ -1,469 +1,380 @@ +# Hrvatska lokalizacija za NVDA. +# Copyright (C) 2006-2019 NVDA contributors +# This file is distributed under the same license as the virtualRevision package. +# Zvonimir Stanečić , 2019. +# Milo Ivir , 2019. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" +"Project-Id-Version: Clock 18.12\n" "Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: Croatian\n" -"Language: hr_HR\n" +"POT-Creation-Date: 2018-12-12 07:57+0100\n" +"PO-Revision-Date: 2024-05-12 14:45+0200\n" +"Last-Translator: Milo Ivir \n" +"Language-Team: HR \n" +"Language: hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: hr\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Poedit 3.0\n" +"X-Poedit-SourceCharset: UTF-8\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Format datuma i vremena koji si koristio/koristila nisu kompatibilni s ovom " +"verzijom dodatka „Sat”. To će se popraviti tijekom instalacije. Pritisni „U " +"redu” za potvrđivanje ovih ispravaka" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Ispravci formata vremena i datuma" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} h, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} min, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} s" + +msgid "0 seconds" +msgstr "0 sekundi" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Sat" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Zakaži a&larme..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Omogućuje postavljanje alarma" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Izgovara trenutačno vrijeme. Ako se pritisne dva puta brzo, izgovara " +"trenutačni datum. Ako se pritisne tri puta brzo, izgovara trenutačni dan, " +"broj tjedna, trenutačnu godinu i broj dana do kraja godine." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "{day}. dan, {week}. tjedan {year}., preostalih dana: {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Višeslojne naredbe za sat i kalendar. Nakon pritiskanja ove tipkovničke " +"kombinacije, pritisni tipku „H” za dodatnu pomoć." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Pokreće, zaustavlja ili resetira štopericu." + +msgid "Reset. Running." +msgstr "Resetiraj. Pokretanje." + +msgid "Running." +msgstr "Pokretanje." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} zaustavljen." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Izgovara trenutačno stanje štoperice ili odbrojavanja vremena." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Javlja preostalo i proteklo vrijeme vrijeme prije sljedećeg alarma." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Proteklo vrijeme {elapsed}, preostalo vrijeme {remaining}." + +msgid "No alarm" +msgstr "Nema alarma" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Otkaži sljedeći alarm." + +msgid "Alarm cancelled" +msgstr "Alarm je otkazan" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Resetira štopericu na nulu bez ponovnog pokretanja." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"Štoperica je već resetirana na nulu. Za pokretanje štoperice koristi " +"povezane naredbe sata, a zatim tipku „s”." + +msgid "Stopwatch reset." +msgstr "Resetiranje štoperice." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Ispisuje dostupne naredbe u sloju naredbi za sat." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." msgstr "" +"Omogućuje provjeravanje sljedećeg alarma. Ako se pritisne dvaput, otkazuje " +"alarm." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Omogućuje zaustavljanje alarma, ako je predug." + +msgid "No sound is launched." +msgstr "Nijedan zvuk nije pokrenut." + +msgid "Sound stopped" +msgstr "Zvuk zaustavljen" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "Dijaloški okvir „Zakazivanje alarma” je već otvoren." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Prikazuje dijaloški okvir za postavke sata." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Prikazuje dijaloški okvir zakazivanje alarma." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "Format za prikaz &vremena:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "Format za prikaz &datuma:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "isključeno" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "svakih 10 minuta" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "svakih 15 minuta" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "svakih pola sata" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "svakih sat vremena" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&interval:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "poruka i zvuk" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "samo poruka" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "samo zvuk" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "N&ajava vremena:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "Zvuk zvona &sata:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" -msgstr "" +msgstr "&Razdijeli zvuka za svakih pola sata" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "Zvuk za najavu vremena svakih pola &sata:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "Sati &mirovanja" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "12-satni format" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "24-satni format" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "Tihi sati i format &vremena:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Početak tihog sata" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Kraj tihog sata" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Sat:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minuta:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Zakazivanje alarma" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "sati" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "minute" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "sekunde" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "Trajanje &alarma u:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Trajanje:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "Zvuk a&larma:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Zaustavi" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Pauza" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Izabran je alarm koji će se aktivirati za {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Potvrda" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Sada je {hours} h i {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Sada je {hours} h i {minutes} min i {seconds} s" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} h i {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} h i {minutes} min i {seconds} s" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "{minutes} min nakon {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} h {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} h, {minutes} min, {seconds} s" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Sada je {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Sada je {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (24-satni format)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (12-satni format)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Napredni sat i kalendar za NVDA.\n" +"NVDA+F12, izgovara trenutačno vrijeme.\n" +"NVDA+F12 pritisnut dva puta brzo, izgovara trenutačni datum.\n" +"NVDA+F12 pritisnut tri puta brzo, izgovara trenutačni dan, broj tjedna, " +"trenutačnu godinu i preostale dane do kraja godine.\n" +"Za ostale upute pritisni gumb pomoć dodatka u upravljaču dodataka." diff --git a/addon/locale/hu/LC_MESSAGES/nvda.po b/addon/locale/hu/LC_MESSAGES/nvda.po index fdfd9ba..88cf869 100644 --- a/addon/locale/hu/LC_MESSAGES/nvda.po +++ b/addon/locale/hu/LC_MESSAGES/nvda.po @@ -1,469 +1,413 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:45\n" +"Project-Id-Version: clock 19.03\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2019-03-08 03:15+1000\n" +"PO-Revision-Date: 2020-08-02 18:54+0100\n" "Last-Translator: \n" -"Language-Team: Hungarian\n" -"Language: hu_HU\n" +"Language-Team: \n" +"Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: hu\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 1.6.10\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"A KORÁBBI dátum- és időformátum nem kompatibilis a bővítmény ezen " +"verziójával, ez a telepítés közben ki lesz javítva. Nyomja meg az ok gombot " +"a korrekciók elfogadásához." #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Dátum és idő formátum korrekció" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} óra, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} perc, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} másodperc" + +msgid "0 seconds" +msgstr "0 másodperc" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Óra" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "" + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Riasztás ütemezése" + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Egyszer lenyomva Bemondja a jelenlegi időt, kétszer gyorsan lenyomva a " +"jelenlegi dátumot, háromszor gyorsan lenyomva a jelenlegi évet, az évből " +"eltelt hetek és napok számát, valamint az évből még hátralévő napok számát." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "" +"{year} {week}. hete és {day}. napja, , az évből még {remain} nap van hátra." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Óra parancsréteg vezérlője. A billentyűparancsot kiegészítve a H betűvel " +"további segítséget kaphat." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Elindítja, leállítja vagy újraindítja a stoppert" + +msgid "Reset. Running." +msgstr "Újraindítva. Fut." + +msgid "Running." +msgstr "Fut." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} leállítva." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Megadja A stopper vagy a visszaszámláló idejét" + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "a következő riasztásig eltelt, ill. fennmaradó idő bejelentése." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Eltelt idő {elapsed}, hátralévő idő {remaining}." + +msgid "No alarm" +msgstr "Nincs riasztás" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "A következő riasztás törlése." + +msgid "Alarm cancelled" +msgstr "Riasztás törölve" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "A stopper lenullázása, újraindítás nélkül" + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"A stopper már le van nullázva, Az elindításhoz használja az óra parancsréteg " +"vezérlőjét az S betűvel kiegészítve." + +msgid "Stopwatch reset." +msgstr "Stopper lenullázva." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Listázza az óra parancsréteg vezérlőjével használható parancsokat." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "A következő riasztás megtekintése, kétszeri lenyomásra törli." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Folyamatban lévő riasztási hang megszakítása." + +msgid "No sound is launched." +msgstr "Nincs betöltve hang." + +msgid "Sound stopped" +msgstr "Hang megállítva" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." msgstr "" +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Megjeleníti az óra beállításait" + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "Display schedule alarms dialog box." +msgstr "Megjeleníti a riasztás beállításait" + #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "&Idő megjelenítési formátum:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "&Dátum megjelenítési formátum:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" +msgstr "Soha" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "Tíz percenként" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "Negyedóránként" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "Félóránként" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "Óránként" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 +#, fuzzy msgid "&Interval:" -msgstr "" +msgstr "&Automatikus időjelzés" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 +#, fuzzy msgid "message and sound" -msgstr "" +msgstr "Beszéd és hang" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 +#, fuzzy msgid "message only" -msgstr "" +msgstr "Csak beszéd" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "Csak hang" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&Jelzés típusa" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "Óra jelző&hangja:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Csendes órák" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 +#, fuzzy msgid "12-hour format" -msgstr "" +msgstr "&24 órás formátum" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 +#, fuzzy msgid "24-hour format" -msgstr "" +msgstr "&24 órás formátum" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 +#, fuzzy msgid "Quiet hours time &format:" -msgstr "" +msgstr "Csendes órák vége:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 +#, fuzzy msgid "Quiet hours start time" -msgstr "" +msgstr "Csendes órák kezdete:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 +#, fuzzy msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Csendes órák vége:" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 +#, fuzzy msgid "Hour:" -msgstr "" +msgstr "Óra" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 +#, fuzzy msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Perc" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" msgstr "" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 +#, fuzzy msgid "hours" -msgstr "" +msgstr "Óra" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 +#, fuzzy msgid "minutes" -msgstr "" +msgstr "Perc" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 +#, fuzzy msgid "seconds" -msgstr "" +msgstr "0 másodperc" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 +#, fuzzy msgid "&Alarm duration in:" -msgstr "" +msgstr "&Riasztási idő" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" msgstr "" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "Riasztás &hangja:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Leállít" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Szünet" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Az ismétlődő riasztás ideje {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Megerősítés" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Most {hours} óra {minutes} perc van" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Most {hours} óra, {minutes} perc és {seconds} másodperc van" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} óra, {minutes} perc" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} óra, {minutes} perc, {seconds} másodperc" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 +#. Translators: A time formating. #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "{minutes} perccel múllt {hours} óra" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} ó {minutes} p" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} ó, {minutes} p, {seconds} mp" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "{hours}:{minutes}" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{hours}:{minutes}:{seconds}" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +#, fuzzy +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Egy kibővített óra az NVDA-hoz.\n" +"NVDA+F12: bemondja a jelenlegi időt.\n" +"NVDA+F12 kétszer gyorsan: bemondja a jelenlegi dátumot.\n" +"NVDA+F12 háromszor gyorsan: bemondja a jelenlegi évet, az évből eltelt hetek " +"és napok számát, valamint az évből még hátralévő napok számát.\n" +"További segítségért nyomja meg a súgó gombot a bővítménykezelőben." + +#~ msgid "Clock se&ttings..." +#~ msgstr "Óra b&eállításai..." + +#~ msgid "Clock and calendar setup" +#~ msgstr "Óra és naptár beállításai" + +#~ msgid "Clock setup" +#~ msgstr "&Óra beállításai" + +#~ msgid "Clock setup for times and dates" +#~ msgstr "Idő és dátumbeálítások" + +#~ msgid "Alarm settin&gs" +#~ msgstr "&Riasztás beállításai" + +#~ msgid "" +#~ "The value you entered for your quiet hours is erroneous, for a 24-hour " +#~ "format, the value must be HH:MM, for a 12-hour format, the value must be " +#~ "HH:MM followed by the AM or PM suffix, please reread the documentation. " +#~ "So your quiet hours have been deactivated for prevent any error in the " +#~ "configuration file." +#~ msgstr "" +#~ "A csendes órák idejét nem az elvárt formátumban adta meg. Amíg nem adja " +#~ "meg helyesen, az opció ki lesz kapcsolva. A helyes megadás 24 órás " +#~ "formátum esetén óó:pp, 12 órás formátum esetén óó:pp kiegészítve az AM " +#~ "vagy PM utótaggal." + +#~ msgid "Error" +#~ msgstr "Hiba" + +#~ msgid "Alarm setup" +#~ msgstr "Riasztás beállításai" + +#~ msgid "Seconds" +#~ msgstr "Másodperc" + +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "Válassza ki az időzítés &egységét" diff --git a/addon/locale/id/LC_MESSAGES/nvda.po b/addon/locale/id/LC_MESSAGES/nvda.po deleted file mode 100644 index 10aedb5..0000000 --- a/addon/locale/id/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:46\n" -"Last-Translator: \n" -"Language-Team: Indonesian\n" -"Language: id_ID\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: id\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/is/LC_MESSAGES/nvda.po b/addon/locale/is/LC_MESSAGES/nvda.po deleted file mode 100644 index ad07f20..0000000 --- a/addon/locale/is/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:45\n" -"Last-Translator: \n" -"Language-Team: Icelandic\n" -"Language: is_IS\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: is\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/it/LC_MESSAGES/nvda.po b/addon/locale/it/LC_MESSAGES/nvda.po index f425269..f939fc3 100644 --- a/addon/locale/it/LC_MESSAGES/nvda.po +++ b/addon/locale/it/LC_MESSAGES/nvda.po @@ -1,469 +1,371 @@ msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:46\n" -"Last-Translator: \n" -"Language-Team: Italian\n" -"Language: it_IT\n" +"POT-Creation-Date: 2018-12-14 14:31+0100\n" +"PO-Revision-Date: 2022-07-24 15:09+0100\n" +"Last-Translator: Chris \n" +"Language-Team: \n" +"Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 1.6.11\n" +"X-Poedit-Basepath: .\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: it\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Il formato data e ora in uso non è compatibile con questa versione del " +"componente aggiuntivo, questo potrà essere risolto durante l'installazione. " +"Fare clic su OK per confermare le correzioni. " #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "correzione formato data e ora." + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} ore, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minuti, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} secondi" + +msgid "0 seconds" +msgstr "0 secondi" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Orologio " + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Time&r" + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Consente di impostare il Timer" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Annuncia l'ora. Premuto 2 volte, annuncia la data. Premuto 3 volte, annuncia " +"il numero dei giorni e delle settimane ed i giorni che mancano alla fine " +"dell'anno." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Giorno {day}: Settimana {week}: anno {year}: mancano {remain} giorni." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." msgstr "" +"Comando Clock and calendar. Dopo aver premuto questo tasto, premere H per " +"ulteriori informazioni." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Avvia, ferma o azzera il cronometro." + +msgid "Reset. Running." +msgstr "Cronometro riavviato da 0." + +msgid "Running." +msgstr "Cronometro Avviato." + +#, python-brace-format +msgid "{0} stopped." +msgstr "Stop, {0}." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Legge il tempo trascorso nel cronometro." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Informa sul tempo rimanente ed il tempo trascorso del Timer." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Mancano {remaining}: tempo trascorso {elapsed}." + +msgid "No alarm" +msgstr "Nessun Timer impostato." + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Annulla il Timer impostato." + +msgid "Alarm cancelled" +msgstr "Timer annullato." + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Azzera il cronometro, senza ripartire." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"Il cronometro è già impostato a 0. Premere il comando nvda+f12 poi s per " +"riavviare." + +msgid "Stopwatch reset." +msgstr "Cronometro azzerato." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Elenca i comandi disponibili per il componente aggiuntivo Clock." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "Permette di controllare il Timer, premuto due volte lo annulla." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Consente di stoppare il suono d'allarme se troppo lungo." + +msgid "No sound is launched." +msgstr "Nessun audio in riproduzione." + +msgid "Sound stopped" +msgstr "Stop..." + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "La finestra per le impostazioni Timer è già aperta." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Visualizza le impostazioni per l'orologio." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Visualizza le impostazioni per il Timer." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "Forma&to ora:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "Formato &Data:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "off" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "Ogni 10 minuti" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "Ogni 15 minuti" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "Ogni 30 minuti" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "Ogni ora" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "Segnale orar&io:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "Suono e voce" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "Solo voce" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "Solo suono" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&Avviso segnale orario:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "Suono &segnale orario:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" msgstr "" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" msgstr "" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Fascia oraria inattiva" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "Formato 12-ore" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "Formato 24-ore" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "&Formato fascia oraria:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Inizio fascia oraria:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "fine fascia oraria:" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Ore" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minuti" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Timer" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "Ore" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "Minuti" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "secondi" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "&Tempo di attesa per il Timer:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Durata:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "Suono per il Time&r:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Stop" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Pausa" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Timer impostato a {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Conferma Timer:" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Sono le {hours} e {minutes} minuti" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Sono le, {hours}, {minutes} minuti, e {seconds} secondi" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours}, {minutes} minuti" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours}, {minutes} minuti, {seconds} secondi" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "{minutes} minuti dopo le {hours} " #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} h {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} h, {minutes} min, {seconds} sec" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Sono le ore, {hours} e {minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Sono le ore, {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (Formato 24-ore)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (Formato 12-ore)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Impostazioni aggiuntive per l'orologio ed il calendario.\n" +"Premere NVDA+F12 per leggere l'ora;\n" +"premere due volte per leggere la data;\n" +"premendo 3 volte conteggia i giorni e le settimane ed i giorni restanti " +"dell'anno in corso.\n" +"Aprire la guida dal gestore componenti aggiuntivi per maggiori informazioni." diff --git a/addon/locale/ja/LC_MESSAGES/nvda.po b/addon/locale/ja/LC_MESSAGES/nvda.po deleted file mode 100644 index 7d88373..0000000 --- a/addon/locale/ja/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:46\n" -"Last-Translator: \n" -"Language-Team: Japanese\n" -"Language: ja_JP\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ja\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/ka/LC_MESSAGES/nvda.po b/addon/locale/ka/LC_MESSAGES/nvda.po deleted file mode 100644 index c4b516d..0000000 --- a/addon/locale/ka/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:45\n" -"Last-Translator: \n" -"Language-Team: Georgian\n" -"Language: ka_GE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ka\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/km/LC_MESSAGES/nvda.po b/addon/locale/km/LC_MESSAGES/nvda.po deleted file mode 100644 index 5647c1d..0000000 --- a/addon/locale/km/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:46\n" -"Last-Translator: \n" -"Language-Team: Khmer\n" -"Language: km_KH\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: km\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/kmr/LC_MESSAGES/nvda.po b/addon/locale/kmr/LC_MESSAGES/nvda.po deleted file mode 100644 index 30f3602..0000000 --- a/addon/locale/kmr/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:46\n" -"Last-Translator: \n" -"Language-Team: Kurmanji (Kurdish)\n" -"Language: kmr_TR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: kmr\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/kn/LC_MESSAGES/nvda.po b/addon/locale/kn/LC_MESSAGES/nvda.po deleted file mode 100644 index c8fa919..0000000 --- a/addon/locale/kn/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:46\n" -"Last-Translator: \n" -"Language-Team: Kannada\n" -"Language: kn_IN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: kn\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/ko/LC_MESSAGES/nvda.po b/addon/locale/ko/LC_MESSAGES/nvda.po index 73a1554..9e116ce 100644 --- a/addon/locale/ko/LC_MESSAGES/nvda.po +++ b/addon/locale/ko/LC_MESSAGES/nvda.po @@ -1,469 +1,371 @@ +# Brazilian Portuguese translation of Clock add-on. +# Copyright (C) 2020 NVDA Contributors. +# This file is distributed under the same license as the NVDA package. +# Ungjin Park +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:46\n" -"Last-Translator: \n" -"Language-Team: Korean\n" -"Language: ko_KR\n" +"Project-Id-Version: Clock add-on\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2020-01-03 03:15+1000\n" +"PO-Revision-Date: 2023-07-12 14:08+0900\n" +"Last-Translator: Ungjin Park \n" +"Language-Team: NVDA Korean Translation Team (NVDA 한국어 번역팀) " +"\n" +"Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ko\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 3.2.2\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-SearchPath-0: .\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"이 Clock 추가기능 버전에서 사용하신 날짜 및 시간 형식을 지원하지 않습니다. 설" +"치 중에 수정되오니 OK 버튼을 눌러 수정하세요" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "시간 및 날짜 형식 수정" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours}시, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes}분, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds}초" + +msgid "0 seconds" +msgstr "0초" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: Summary for this add-on to be shown on installation and add-on information. msgid "Clock" +msgstr "시계" + +#. Translators: Item in the tools menu for the Clock Addon settings. +msgid "Clock se&ttings..." +msgstr "시계 설정(&T)..." + +#. Translators: The tooltyp text for the clock settings submenu. +msgid "Clock and calendar setup" +msgstr "시계 및 달력 설정" + +#. Translators: The name of the first item in the Clock settings submenu. +#. Translators: This is the label for the clock settings panel. +msgid "Clock setup" +msgstr "시계 설정" + +#. Translators: The tooltyp text for the first item in the Clock add-on submenu. +msgid "Clock setup for times and dates" +msgstr "시간 및 날짜 설정" + +#. Translators: The name of the second item in the Clock settings submenu. +msgid "Alarm settin&gs" +msgstr "알람 설정(&G)" + +#. Translators: The tooltyp text for the second item in the Clock add-on submenu. +msgid "Allows you to schedule an alarm" +msgstr "알람 일정을 설정할 수 있습니다" + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "{year}년의 {week}번째 주, {day}번째 날, 내년까지 {remain}일 남음." + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed thrice quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"현재 시간을 알립니다. 빠르게 두 번 누르면 현재 날짜를 알립니다. 빠르게 세 번 " +"누르면, 지금 1년 중, 몇번째 주, 몇번째 날인지, 내년까지 며칠 남았는지 알립니" +"다." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." msgstr "" +"시계 및 달력 레이어 명령입니다. 이 단축키를 누른 다음, H키를 누르면 추가 도움" +"말을 들을 수 있습니다." + +msgid "Reset. Running." +msgstr "초기화, 실행." + +msgid "Running." +msgstr "실행." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} 정지됨." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "스탑워치를 시작, 초기화 또는 정지합니다." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "현재 스탑워치 또는 카운트다운 타이머를 알립니다." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "{elapsed} 경과, {remaining} 남음." + +msgid "No alarm" +msgstr "알람이 없습니다" + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "다음 알람의 경과 시간과 남은 시간을 알립니다." + +msgid "Alarm cancelled" +msgstr "알람 취소됨" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "다음 알람을 취소합니다." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"스톱워치가 이미 초기화되었습니다. 시계 레이어 명령의 S키를 사용하여 시작하세" +"요." + +msgid "Stopwatch reset." +msgstr "스톱워치가 초기화되었습니다." + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "재시작하지 않고 스톱워치를 초기화합니다." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "시계 레이어 명령 중 사용 가능한 명령을 나열합니다." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "" +"다음 알람을 확인합니다. 빠르게 두 번 누르면 다음 알람을 취소할 수 있습니다." + +msgid "No sound is launched." +msgstr "소리가 재생되지 않습니다." + +msgid "Sound stopped" +msgstr "소리 정지됨" + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "알람을 정지합니다." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "시계 설정 대화상자를 엽니다." + +#. Translators: Message presented in input help mode. +msgid "Display the alarm settings dialog box." +msgstr "알람 설정 대화상자를 엽니다." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "시간 표시 형식(&T):" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "날짜 표시 형식(&D):" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" +msgstr "끔" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "10분마다" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "15분마다" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "30분마다" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "매시간" -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" +#. Transla tors: This is the label for a combo box in the Clock settings dialog. +msgid "&interval:" +msgstr "알림 반복(&I)" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" +msgid "speech and sound" +msgstr "알림 말하기 및 알림음 재생" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" +msgid "speech only" +msgstr "알림 말하기" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "알림음 재생" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "시간 알림(&A):" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "시계 알림음(&S):" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "방해금지(&Q)" -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" +#. Translators: This is the label for a checkbox in the Clock settings dialog. +msgid "Input in &24-hour format" +msgstr "24시간 형식으로 입력(&2)" -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +#. Translators: This is the label for an edit field in the Clock settings dialog. +msgid "Quiet hours start time:" +msgstr "방해금지 시작 시간:" -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" +#. Translators: This is the label for an edit field in the Clock settings dialog. +msgid "Quiet hours end time:" +msgstr "방해금지 종료 시간:" -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" +#. A message that appears to inform the user that he has entered a mistaken value for the quiet hours. +msgid "" +"The value you entered for your quiet hours is erroneous, for a 24-hour " +"format, the value must be HH:MM, for a 12-hour format, the value must be HH:" +"MM followed by the AM or PM suffix, please reread the documentation. So your " +"quiet hours have been deactivated for prevent any error in the configuration " +"file." msgstr "" +"입력하신 값이 잘못되었습니다. 24시간 형식이라면 값은 반드시 HH-MM 형식이여야 " +"합니다. 12시간 형식이라면 값은 반드시 HH:MM 형식이여야만 AM/PM(오전/오후) 글" +"자가 따라 붙습니다." -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +#. Translators: The title of the dialog which appears when the user has chosen a mistaken value for his quiet hours. +msgid "Error" +msgstr "오류" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" +msgid "Alarm setup" +msgstr "알람 설정" -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" +#. Translators: This is an item of the alarm timer choices. +msgid "Hours" +msgstr "시" -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" +#. Translators: This is an item of the alarm timer choices. +msgid "Minutes" +msgstr "분" -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" +#. Translators: This is an item of the alarm timer choices. +msgid "Seconds" +msgstr "초" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" +msgid "Choose the type of timer &inputs before the alarm rings:" +msgstr "알람 시간 단위를 선택하세요(&I):" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "알람음(&L):" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "정지(&S)" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" +msgstr "일시정지(&P)" -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +#. Translators: This is the label for an edit field in the Alarm settings dialog. +msgid "Alarm &time waiting:" +msgstr "알람 대기 시간(&T):" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "{tm} {unit}에 알람을 설정하셨습니다." #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "확인" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "현재시간, {hours}시 {minutes}분입니다" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "현재시간, {hours}시, {minutes}분 {seconds}초입니다" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours}시, {minutes}분" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours}시, {minutes}분, {seconds}초" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 +#. Translators: A time formating. #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "현재시간, {hours}시 {minutes}분" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours}시 {minutes}분" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours}시, {minutes}분, {seconds}초" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "현재시간, {hours}:{minutes}" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" +msgstr "현재시간 {hours}:{minutes}:{seconds}" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed thrice quickly, reports the current day, the week number, " +"the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"시계 및 달력(Clock and Calendar) NVDA 추가기능\n" +"NVDA+F12, 현재 시간을 알립니다.\n" +"NVDA+F12(빠르기 두 번), 현재 날짜를 알립니다.\n" +"NVDA+F12(빠르게 세 번), 현재 몇번째 주, 며칠째인지, 내년까지 남은 D-DAY를 알" +"립니다. \n" +"다른 도움이 필요하다면 '추가기능 관리'의 '도움말' 버튼으로 문서를 확인할 수 " +"있습니다." diff --git a/addon/locale/ky/LC_MESSAGES/nvda.po b/addon/locale/ky/LC_MESSAGES/nvda.po deleted file mode 100644 index c2ab0a8..0000000 --- a/addon/locale/ky/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:47\n" -"Last-Translator: \n" -"Language-Team: Kyrgyz\n" -"Language: ky_KG\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ky\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/lt/LC_MESSAGES/nvda.po b/addon/locale/lt/LC_MESSAGES/nvda.po deleted file mode 100644 index 13643ff..0000000 --- a/addon/locale/lt/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:47\n" -"Last-Translator: \n" -"Language-Team: Lithuanian\n" -"Language: lt_LT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: lt\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/mk/LC_MESSAGES/nvda.po b/addon/locale/mk/LC_MESSAGES/nvda.po deleted file mode 100644 index 995576e..0000000 --- a/addon/locale/mk/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:47\n" -"Last-Translator: \n" -"Language-Team: Macedonian\n" -"Language: mk_MK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n%10==1 && n%100 != 11 ? 0 : 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: mk\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/mn/LC_MESSAGES/nvda.po b/addon/locale/mn/LC_MESSAGES/nvda.po deleted file mode 100644 index 21e301a..0000000 --- a/addon/locale/mn/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:47\n" -"Last-Translator: \n" -"Language-Team: Mongolian\n" -"Language: mn_MN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: mn\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/my/LC_MESSAGES/nvda.po b/addon/locale/my/LC_MESSAGES/nvda.po deleted file mode 100644 index dd249b7..0000000 --- a/addon/locale/my/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: Burmese\n" -"Language: my_MM\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: my\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/nb_NO/LC_MESSAGES/nvda.po b/addon/locale/nb_NO/LC_MESSAGES/nvda.po deleted file mode 100644 index 96f6fbc..0000000 --- a/addon/locale/nb_NO/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:47\n" -"Last-Translator: \n" -"Language-Team: Norwegian Bokmal\n" -"Language: nb_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: nb\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/ne/LC_MESSAGES/nvda.po b/addon/locale/ne/LC_MESSAGES/nvda.po deleted file mode 100644 index b076e07..0000000 --- a/addon/locale/ne/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:47\n" -"Last-Translator: \n" -"Language-Team: Nepali\n" -"Language: ne_NP\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ne-NP\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/nl/LC_MESSAGES/nvda.po b/addon/locale/nl/LC_MESSAGES/nvda.po deleted file mode 100644 index 82ed1e7..0000000 --- a/addon/locale/nl/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: Dutch\n" -"Language: nl_NL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: nl\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/nn_NO/LC_MESSAGES/nvda.po b/addon/locale/nn_NO/LC_MESSAGES/nvda.po deleted file mode 100644 index 6cca509..0000000 --- a/addon/locale/nn_NO/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:47\n" -"Last-Translator: \n" -"Language-Team: Norwegian Nynorsk\n" -"Language: nn_NO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: nn-NO\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/pa/LC_MESSAGES/nvda.po b/addon/locale/pa/LC_MESSAGES/nvda.po deleted file mode 100644 index fe6e131..0000000 --- a/addon/locale/pa/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:48\n" -"Last-Translator: \n" -"Language-Team: Punjabi\n" -"Language: pa_IN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: pa-IN\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/pl/LC_MESSAGES/nvda.po b/addon/locale/pl/LC_MESSAGES/nvda.po index df9c610..5d3b16d 100644 --- a/addon/locale/pl/LC_MESSAGES/nvda.po +++ b/addon/locale/pl/LC_MESSAGES/nvda.po @@ -1,469 +1,508 @@ msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:48\n" -"Last-Translator: \n" -"Language-Team: Polish\n" +"Project-Id-Version: Clock 18.12dev\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-15 18:53+0100\n" +"PO-Revision-Date: 2023-10-24 11:43+0400\n" +"Last-Translator: Zvonimir <9a5dsz@gozaltech.org>\n" +"Language-Team: \n" "Language: pl_PL\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: pl\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Poedit 3.4\n" +"X-Poedit-Basepath: .\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Format daty i godziny, których używałeś, nie jest zgodny z tą wersją dodatku " +"Clock, zostanie to naprawione podczas instalacji. Kliknij przycisk OK, aby " +"potwierdzić te poprawki" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Poprawki dotyczące formatu daty i czasu" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} godzin, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minut, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} sekund" + +msgid "0 seconds" +msgstr "0 sekund" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Zegar" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Zaplanuj a&larmy..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Umożliwia zaplanowanie alarmu" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Wymawia aktualny czas. Po dwukrotnym szybkim naciśnięciu wymawia bieżącą " +"datę. Po trzykrotnym szybkim naciśnięciu wymawia bieżący dzień, numer " +"tygodnia, bieżący rok i dni pozostałe do końca roku." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Dzień {day}, tydzień {week} w roku {year}, pozostałe dni {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Polecenia warstwowe zegara i kalendarza. Po naciśnięciu tego skrótu " +"klawiszowego, naciśnij \"h\", aby uzyskać dodatkową pomoc." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Uruchamia, zatrzymuje lub resetuje stoper." + +msgid "Reset. Running." +msgstr "Ponowne uruchomienie. Uruchomione." + +msgid "Running." +msgstr "Uruchomione." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} Zatrzymane." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Wymawia aktualny czas odliczony przez stoper lub licznik." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." msgstr "" +"Podaje czas, który upłynął od poprzedniego alarmu i pozostał do następnego." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Czas od początku {elapsed}, pozostały czas {remaining}." + +msgid "No alarm" +msgstr "Brak alarmu" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Umożliwia anulowanie następnego alarmu." + +msgid "Alarm cancelled" +msgstr "Anulowano alarm" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "" +"Umożliwia wyzerowanie stopera, bez konieczności ponownego uruchamiania go." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"Stoper jest już zresetowany do 0. Użyj polecenia warstwy zegara, po którym " +"następuje s, aby ją uruchomić." + +msgid "Stopwatch reset." +msgstr "Stoper zresetowany." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Podaje dostępne klawisze warstwowe zegara." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "" +"Umożliwia sprawdzenie następnego alarmu. Po dwukrotnym naciśnięciu, anuluje " +"go." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Jeżeli alarm jest za długi, ta opcja umożliwia zatrzymanie tego że." + +msgid "No sound is launched." +msgstr "Nie ma odtwarzanego dźwięku." + +msgid "Sound stopped" +msgstr "Dźwięk zatrzymany" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "Okno dialogowe Zaplanuj alarmy jest już otwarte." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Wyświetla okno dialogowe ustawień zegara." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Wyświetla okno dialogowe Zaplanuj alarmy." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "&format wyświetlania czasu:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "&Format wyświetlania daty:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "wyłączone" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "co 10 minut" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "co 15 minut" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "co 30 minut" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "co godzinę" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&Interwał:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "komunikati dźwięk" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "tylko komunikat" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "tylko dźwięk" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "Oznajmianie &czasu:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "Dźwięk oznajmiania &godziny:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" -msgstr "" +msgstr "&Rozdziel dźwięki pełnej godziny od dźwięków do połowy godziny" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "Dźwięk dla do ogłaszania każdych pół godzin:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "godziny &ciszy" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "Format 12-godzinny" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "Format 24-godzinny" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "&Format czasu godzin ciszy:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Początek godzin ciszy" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Koniec godzin ciszy" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Godzina:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minuta:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Zaplanuj alarmy" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "godzin" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "minut" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "sekund" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "&Czas trwania alarmu w:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Czas trwania:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "Dźwięk A&larmu:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&zatrzymaj" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Wstrzymaj" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Wybrano wywołanie alarmu w {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Potwierdzenie" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Jest {hours} godzina {minutes} minut" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Jest {hours} godzin, {minutes} minut i {seconds} sekund" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} godzin, {minutes} minut" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} godzin, {minutes} minut, {seconds} sekund" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Jest za {minutes} {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} godz {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} godz, {minutes} min, {seconds} sek" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Jest {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Jest {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (format 24-godzinny)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" +msgstr "{fmt} (format 12-godzinny)" -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" +#. Add-on description +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" +"NVDA+F12, get current time.\n" +"NVDA+F12 pressed twice quickly, get current date.\n" +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Zaawansowany zegar i kalendarz dla NVDA.\n" +"NVDA + F12, wymawia aktualny czas.\n" +"NVDA + F12 naciśnięte dwukrotnie szybko, wymawia aktualną datę.\n" +"NVDA + F12 naciśnięte trzy razy szybko, zgłasza bieżący dzień, numer " +"tygodnia, bieżący rok i pozostałe dni przed końcem roku.\n" +"Aby uzyskać inne instrukcje, naciśnij przycisk Pomoc dodatków w Menedżerze " +"dodatków." + +#~ msgid "Clock se&ttings..." +#~ msgstr "&Ustawienia zegara..." + +#~ msgid "Clock and calendar setup" +#~ msgstr "Ustawianie kalendarza i zegara" + +#~ msgid "Clock setup" +#~ msgstr "Ustawienia zegara" + +#~ msgid "Clock setup for times and dates" +#~ msgstr "Ustawienia daty i czasu dla zegara" + +#~ msgid "Alarm settin&gs" +#~ msgstr "Ustawienia alarm&u" -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" +#~ msgid "" +#~ "The value you entered for your quiet hours is erroneous, for a 24-hour " +#~ "format, the value must be HH:MM, for a 12-hour format, the value must be " +#~ "HH:MM followed by the AM or PM suffix, please reread the documentation. " +#~ "So your quiet hours have been deactivated for prevent any error in the " +#~ "configuration file." +#~ msgstr "" +#~ "Wartości dla godzin ciszy są nieprawidłowe, dla 24-godzinnego formatu, " +#~ "Wartość musi wyglądać następująco: HH:MM, a dla 12-godzinnego formatu, HH:" +#~ "MM po czym musi być napisany sufiks AM lub PM, Proszę ponownie przeczytać " +#~ "dokumentację. Państwa godziny ciszy zostały wyłączon, aby zapobiec błędów " +#~ "w konfiguracji." -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" +#~ msgid "Error" +#~ msgstr "błąd" -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" +#~ msgid "Alarm setup" +#~ msgstr "Ustawienia alarmu" -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" +#~ msgid "Seconds" +#~ msgstr "sekund" -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "Proszę wybrać typ wejścia &tajmera przed dzwonkiem alarma:" -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" +#~ msgid "" +#~ "\n" +#~ "\t\tS: Starts, resets or stops the stopwatch.\n" +#~ "\t\tR: Resets stopwatch to 0 without restarting it.\n" +#~ "\t\tA: Gives the remaining and elapsed time before the next alarm.\n" +#~ "\t\tC: Cancel the next alarm.\n" +#~ "\t\tSpacebar: Speaks current stopwatch or count-down timer.\n" +#~ "\t\tH: List all layered commands (Help).\n" +#~ "\t\t" +#~ msgstr "" +#~ "\n" +#~ "\t\tS: Uruchamia, resetuje lub zatrzymuje stoper.\n" +#~ "\t\tR: Umożliwia wyzerowanie stopera bez konieczności resetowania go.\n" +#~ "\t\tA: Podaje czas między poprzednim i następnym alarmem.\n" +#~ "\t\tC: Anuluje następny alarm.\n" +#~ "\t\tSpacebar: Wymawia aktualny czas na stoperze lub liczniku.\n" +#~ "\t\tH: Pokazuje listę poleceń (Pomoc).\n" +#~ "\t\t" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" +#~ msgid "Auto announce &interval:" +#~ msgstr "&Interwał automatycznego wypowiadania:" -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" +#~ msgid "%d hour, " +#~ msgstr "%d godzina, " -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" +#~ msgid "%d minute, " +#~ msgstr "%d minuta, " -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" +#~ msgid "%s second" +#~ msgstr "%s sekunda" -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" +#~ msgid "It's mm past H" +#~ msgstr "jest za mm H" -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" +#~ msgid "hh mm min" +#~ msgstr "hh mm min" -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" +#~ msgid "hh mm min ss sec" +#~ msgstr "hh mm min ss sek" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" +#~ msgid "It's H:mm" +#~ msgstr "Jest H:mm" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" +#~ msgid "It's HH:mm:ss" +#~ msgstr "Jest HH:mm:ss" -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" +#~ msgid "%H h, %M min" +#~ msgstr "%H godz, %M min" -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" +#~ msgid "%H:%M:%S" +#~ msgstr "%H:%M:%S" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" +#~ msgid "%H:%M" +#~ msgstr "%H:%M" -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" +#~ msgid "It's %I:%M %p" +#~ msgstr "Jest %I:%M %p" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" +#~ msgid "It's %I:%M:%S %p" +#~ msgstr "jest %I:%M:%S %p" -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" +#~ msgid "%I:%M %p" +#~ msgstr "%I:%M %p" -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" +#~ msgid "%I:%M:%S %p" +#~ msgstr "%I:%M:%S %p" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" +#~ msgid "%A, %B %d, %Y" +#~ msgstr "%A, %B %d, %Y" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" +#~ msgid "%Y-%d-%m" +#~ msgstr "%Y-%d-%m" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" +#~ msgid "%Y-%m-%d" +#~ msgstr "%Y-%m-%d" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" +#~ msgid "%d-%m-%Y" +#~ msgstr "%d-%m-%Y" -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" +#~ msgid "%m-%d-%Y" +#~ msgstr "%m-%d-%Y" -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" +#~ msgid "%m/%d/%Y" +#~ msgstr "%m/%d/%Y" -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" +#~ msgid "%d/%m/%Y" +#~ msgstr "%d/%m/%Y" +#~ msgid "Day %j, week %W of %Y." +#~ msgstr "Dzień %j, tydzień %W z %Y." diff --git a/addon/locale/pt_BR/LC_MESSAGES/nvda.po b/addon/locale/pt_BR/LC_MESSAGES/nvda.po index 37bbf99..6b41ba8 100644 --- a/addon/locale/pt_BR/LC_MESSAGES/nvda.po +++ b/addon/locale/pt_BR/LC_MESSAGES/nvda.po @@ -1,469 +1,423 @@ +# Brazilian Portuguese translation of Clock add-on. +# Copyright (C) 2020-2021 NVDA Contributors. +# This file is distributed under the same license as the NVDA package. +# Ângelo Abrantes , 2018-2019. +# Rui Fontes , 2018. +# Tiago Melo Casal , 2020-2021. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:48\n" -"Last-Translator: \n" -"Language-Team: Portuguese, Brazilian\n" +"Project-Id-Version: Clock add-on\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2020-01-03 03:15+1000\n" +"PO-Revision-Date: 2024-12-02 09:37-0300\n" +"Last-Translator: Tiago Melo Casal \n" +"Language-Team: NVDA Brazilian Portuguese translation team (Equipe de " +"tradução do NVDA para Português Brasileiro) \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: pt-BR\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.5\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-SearchPath-0: .\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Os formatos de data e hora que estava usando não são compatíveis com esta " +"versão do complemento Relógio, isso será corrigido durante a instalação. " +"Pressione OK para confirmar a correção" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Correções do formato de data e hora" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} horas, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minutos, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} segundos" + +msgid "0 seconds" +msgstr "0 segundos" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Relógio" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Agendar a&larmes..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Permite agendar um alarme" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Fala a hora atual. Se pressionado duas vezes rapidamente, fala a data atual. " +"Se pressionado três vezes rapidamente, informa o dia atual, o número da " +"semana, o ano atual e os dias restantes para o final do ano." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Dia {day}, semana {week} de {year}, dias restantes {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Comandos da camada de relógio e calendário. Depois de pressionar esta tecla " +"de atalho, pressione H para ajuda adicional." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Inicia, redefine ou para o cronômetro." + +msgid "Reset. Running." +msgstr "Redefinir. Executando." + +msgid "Running." +msgstr "Executando." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} parado." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Fala o cronômetro atual ou o temporizador de contagem regressiva." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Dá o tempo restante e decorrido antes do próximo alarme." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Tempo decorrido {elapsed}, tempo restante {remaining}." + +msgid "No alarm" +msgstr "Sem alarme" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Cancelar o próximo alarme." + +msgid "Alarm cancelled" +msgstr "Alarme cancelado" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Redefine o cronômetro para 0 sem reiniciá-lo." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"O cronômetro já está redefinido para 0. Use o comando da camada de relógio " +"seguido por s para iniciá-lo." + +msgid "Stopwatch reset." +msgstr "Cronômetro redefinido." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Lista os comandos disponíveis na camada de comando do relógio." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." msgstr "" +"Permite verificar o próximo alarme. Se pressionado duas vezes, cancela-o." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Se um alarme é demasiado longo, permite pará-lo." + +msgid "No sound is launched." +msgstr "Nenhum som é iniciado." + +msgid "Sound stopped" +msgstr "Som parado" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "O diálogo agendar alarmes já está aberto." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Mostra a caixa de diálogo de configurações do relógio." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Exibe a caixa de diálogo agendar alarmes." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "Formato de exibição da &hora:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "Formato de exibição da &data:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "desativado" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "a cada 10 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "a cada 15 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "a cada 30 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "a cada hora" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&Intervalo:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "mensagem e som" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "apenas mensagem" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "apenas som" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&Anúncio da hora:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&Som da badalada do relógio:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" -msgstr "" +msgstr "&Sinalização separada das horas e dos minutos intermediários" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "Minutos intermediários de chime &som:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Horas silenciosas" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "formato de 12 horas" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "formato de 24 horas" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "Formato de horas silenciosas:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Horário de início das horas silenciosas" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Horário de término das horas silenciosas" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Hora:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minuto:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Agendar alarmes" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "horas" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "minutos" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "segundos" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "&Duração do alarme em:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Duração:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "Som do a&larme:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "Pa&rar" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Pausa" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Escolheu um alarme para ser ativado em {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Confirmação" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "São {hours} horas e {minutes} minutos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "São {hours} horas, {minutes} minutos e {seconds} segundos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} horas, {minutes} minutos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} horas, {minutes} minutos, {seconds} segundos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "São {hours} e {minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} h {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} h, {minutes} min, {seconds} seg" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "São {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "São {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} formato de 24 horas" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} formato de 12 horas" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Um relógio e calendário avançados para NVDA.\n" +"NVDA+F12, obtém a hora atual.\n" +"NVDA+F12 pressionado duas vezes rapidamente, obtém a data atual.\n" +"NVDA+F12 pressionado três vezes rapidamente, informa o dia atual, o número " +"da semana, o ano atual e os dias restantes para o fim do ano.\n" +"Para outras instruções, pressione o botão ajuda do complemento no gestor de " +"complementos." + +#~ msgid "Clock se&ttings..." +#~ msgstr "Configurações do &Relógio..." + +#~ msgid "Clock and calendar setup" +#~ msgstr "Configuração do relógio e calendário" + +#~ msgid "Clock setup" +#~ msgstr "Configuração do relógio" + +#~ msgid "Clock setup for times and dates" +#~ msgstr "Configuração do relógio para horários e datas" + +#~ msgid "Alarm settin&gs" +#~ msgstr "Configurações do &alarme" + +#~ msgid "" +#~ "The value you entered for your quiet hours is erroneous, for a 24-hour " +#~ "format, the value must be HH:MM, for a 12-hour format, the value must be " +#~ "HH:MM followed by the AM or PM suffix, please reread the documentation. " +#~ "So your quiet hours have been deactivated for prevent any error in the " +#~ "configuration file." +#~ msgstr "" +#~ "O valor digitado para as suas horas de silêncio está incorreto; para um " +#~ "formato de 24 horas, o valor deve ser HH:MM, para um formato de 12 horas, " +#~ "o valor deve ser HH:MM seguido do sufixo AM ou PM, por favor, leia " +#~ "novamente a documentação. Por esse motivo, as suas horas de silêncio " +#~ "foram desativadas para evitar qualquer erro no arquivo de configuração." + +#~ msgid "Error" +#~ msgstr "Erro" + +#~ msgid "Alarm setup" +#~ msgstr "Configuração do alarme" + +#~ msgid "Seconds" +#~ msgstr "Segundos" + +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "Escolha o tipo de &entrada do temporizador antes do alarme tocar:" diff --git a/addon/locale/pt_PT/LC_MESSAGES/nvda.po b/addon/locale/pt_PT/LC_MESSAGES/nvda.po index c5e00f5..302e689 100644 --- a/addon/locale/pt_PT/LC_MESSAGES/nvda.po +++ b/addon/locale/pt_PT/LC_MESSAGES/nvda.po @@ -1,469 +1,381 @@ msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" +"Project-Id-Version: Clock 18.12\n" "Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:48\n" -"Last-Translator: \n" -"Language-Team: Portuguese\n" -"Language: pt_PT\n" +"POT-Creation-Date: 2018-12-12 08:31+0100\n" +"PO-Revision-Date: 2023-12-01 23:06+0000\n" +"Last-Translator: Ângelo Abrantes \n" +"Language-Team: Equipa Portuguesa do NVDA \n" +"Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: pt-PT\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: .\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPath-1: .\n" +"X-Poedit-SearchPath-2: .\n" +"X-Poedit-SearchPath-3: C:/Programmi/NVDA/userConfig/addons/Weather Plus/" +"globalPlugins/weather\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Os formatos de data e hora que estava a usar não são compatíveis com esta " +"versão do extra e serão corrigidos durante a instalação. Pressione OK para " +"confirmar a correcção" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Correcção do formato de data e hora" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} horas, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minutos, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} segundos" + +msgid "0 seconds" +msgstr "0 segundos" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Relógio" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Configurar a&larms..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Permite configurar um alarme" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Diz a hora actual. Se pressionado duas vezes rapidamente, diz a data actual. " +"Se pressionado três vezes rapidamente, informa o dia actual, o número da " +"semana, o ano atual e os dias restantes antes do final do ano." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "" +"Dia {day}, semana {week} de {year} e faltam {remain} dias para o fim do ano." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Comandos da camada de relógio e calendário. Depois de pressionar esta tecla " +"de atalho, pressione H para ajuda adicional." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Inicia, pára ou reestablece o cronómetro." + +msgid "Reset. Running." +msgstr "Reiniciar. A executar." + +msgid "Running." +msgstr "A executar..." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} parado." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." msgstr "" +"Informa sobre o cronómetro actual ou fornece a contagem regressiva do " +"cronómetro." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Anuncia o tempo decorrido e restante antes do próximo alarme." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Tempo decorrido {elapsed}, tempo restante {remaining}." + +msgid "No alarm" +msgstr "Sem alarme" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Cancelar o próximo alarme." + +msgid "Alarm cancelled" +msgstr "Alarme cancelado" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Redefine o cronómetro para 0, sem o iniciar." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"O cronómetro já está redefinido para 0. Use o comando da camada de relógio " +"seguido por s para o iniciar." + +msgid "Stopwatch reset." +msgstr "Cronómetro reiniciado." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Lista os comandos disponíveis na camada de comando do relógio." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "Verifica o próximo alarme, duas vezes cancela-o." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Se um alarme é demasiado longo, permite pará-lo." + +msgid "No sound is launched." +msgstr "Não se ouve qualquer som." + +msgid "Sound stopped" +msgstr "Som parado" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "O diálogo de configuração de alarmes já está aberto." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Mostra o diálogo de configurações do relógio." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Mostra O diálogo de configuração de alarmes." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "Formato de visualização da &hora:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "Formato de visualização da &data:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "desactivado" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "cada 10 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "cada 15 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "cada 30 minutos" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "cada hora" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&Intervalo:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "voz e som" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "somente mensagem" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "apenas som" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&Anúncio da hora:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&Som da campainha do relógio:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" -msgstr "" +msgstr "sinalização separada das horas e dos minutos intermediários" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "Minutos intermediários de chime &sound:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Horas silenciosas" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "Formato de 12 horas" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "Formato 24 horas" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "&Formato do Horário de silêncio:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Início das horas silenciosas" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Fim das horas silenciosas" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Hora:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minuto:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Configurar alarmes" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "horas" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "minutos" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "segundos" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "Duração do &Alarme em:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Duração:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "&Som do alarme:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Parar" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "P&ausa" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Configurou um alarme para ser activado em {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Confirmação" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "São {hours} horas e {minutes} minutos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "São {hours} horas, {minutes} minutos e {seconds} segundos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} horas, {minutes} minutos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} horas, {minutes} minutos e {seconds} segundos" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "São {minutes} depois das {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} h {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} h, {minutes} min, {seconds} sec" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "São {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "São {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (formato 24 horas)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (formato de 12 horas)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Um relógio e um calendário avançados para o NVDA.\n" +"Pressione NVDA + F12 para a hora actual, \n" +"pressione duas vezes para a data actual \n" +"ou pressione três vezes para obter o dia e a semana do ano actual.\n" +"Para outras instruções, pressione o botão de ajuda do extra no gestor de " +"extras\"." diff --git a/addon/locale/ro/LC_MESSAGES/nvda.po b/addon/locale/ro/LC_MESSAGES/nvda.po index 01a86d3..db3a1a8 100644 --- a/addon/locale/ro/LC_MESSAGES/nvda.po +++ b/addon/locale/ro/LC_MESSAGES/nvda.po @@ -1,469 +1,437 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:48\n" -"Last-Translator: \n" -"Language-Team: Romanian\n" -"Language: ro_RO\n" +"Project-Id-Version: clock 18.12\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-13 15:50+1000\n" +"PO-Revision-Date: 2019-02-10 12:44+0200\n" +"Last-Translator: Florian Ionașcu \n" +"Language-Team: \n" +"Language: ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ro\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 2.2.1\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Formatele de dată și oră pe care le utilizați nu sunt compatibile cu această " +"versiune a suplimentului Clock, aceasta va fi rezolvată în timpul " +"instalării. Dați click pe OK pentru a confirma aceste corecturi" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Corecturi ale formatelor de dată și oră" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} ore, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minute, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} secunde" + +msgid "0 seconds" +msgstr "0 secunde" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Ceas" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "" + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Vă permite să programați o alarmă" + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Spune ora actuală. Dacă e apăsat de două ori rapid, spune data curentă. Dacă " +"e apăsat de trei ori rapid, spune ziua curentă, numărul săptămânii, anul " +"curent și câte zile mai sunt până la sfârșitul acestuia." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Ziua {day}, săptămâna {week} din {year}, zile rămase {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Comenzile de strat pentru ceas și calendar. După apăsarea acestei combinații " +"de taste, apăsați H pentru ajutor suplimentar." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Pornește, resetează sau oprește cronometrul." + +msgid "Reset. Running." +msgstr "Resetare. Rulează." + +msgid "Running." +msgstr "Rulează." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} oprit." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Spune cronometrul curent sau pe cel al numărătorii inverse." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Dă timpul scurs și timpul rămas înainte de alarma următoare." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Timp scurs {elapsed}, timp rămas {remaining}." + +msgid "No alarm" +msgstr "Nicio alarmă" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Anulează alarma următoare." + +msgid "Alarm cancelled" +msgstr "Alarmă anulată" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Resetează cronometrul la 0 fără a-l reporni." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"Cronometrul este deja resetat la 0. Folosiți comanda de strat a ceasului " +"urmată de s pentru a-l porni." + +msgid "Stopwatch reset." +msgstr "Resetare cronometru." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Listează comenzile disponibile din în stratul de comenzi ale ceasului." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "" +"Vă permite să verificați alarma următoare. Dacă e apăsat de două ori, o " +"anulează." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Dacă o alarmă este prea mare, permite oprirea acesteia." + +msgid "No sound is launched." +msgstr "Nu este lansat niciun sunet." + +msgid "Sound stopped" +msgstr "Sunet oprit" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." msgstr "" +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Afișează fereastra de dialog a setărilor ceasului." + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "Display schedule alarms dialog box." +msgstr "Afișează fereastra de dialog a setărilor alarmei." + #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "&Formatul în care doriți să se afișeze ora:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "&Formatul în care doriți să se afișeze data:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" +msgstr "dezactivat" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "din 10 în 10 minute" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "din sfert în sfert de oră" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "din jumătate în jumătate de oră" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "din oră în oră" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 +#, fuzzy msgid "&Interval:" -msgstr "" +msgstr "&interval:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 +#, fuzzy msgid "message and sound" -msgstr "" +msgstr "vorbire și sunet" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 +#, fuzzy msgid "message only" -msgstr "" +msgstr "doar vorbire" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "doar sunet" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&Anunțarea orei:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&Cum să sune ceasul:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Ore de liniște" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 +#, fuzzy msgid "12-hour format" -msgstr "" +msgstr "Formatul standard, &24 de ore" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 +#, fuzzy msgid "24-hour format" -msgstr "" +msgstr "Formatul standard, &24 de ore" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 +#, fuzzy msgid "Quiet hours time &format:" -msgstr "" +msgstr "Timp de sfârșit al orelor de liniște:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 +#, fuzzy msgid "Quiet hours start time" -msgstr "" +msgstr "Timp de început al orelor de liniște:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 +#, fuzzy msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Timp de sfârșit al orelor de liniște:" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 +#, fuzzy msgid "Hour:" -msgstr "" +msgstr "Ore" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 +#, fuzzy msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minute" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" msgstr "" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 +#, fuzzy msgid "hours" -msgstr "" +msgstr "Ore" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 +#, fuzzy msgid "minutes" -msgstr "" +msgstr "Minute" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 +#, fuzzy msgid "seconds" -msgstr "" +msgstr "0 secunde" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 +#, fuzzy msgid "&Alarm duration in:" -msgstr "" +msgstr "&Timp așteptare alarmă:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" msgstr "" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "&Sunet de alarmă:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "Opre&ște" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "Pau&ză" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Ați ales ca o alarmă să fie declanșată în {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Confirmare" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Este ora {hours} și {minutes} minute" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Este ora {hours}, {minutes} minute și {seconds} secunde" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "Ora {hours}, {minutes} minute" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "Ora {hours}, {minutes} minute, {seconds} secunde" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 +#. Translators: A time formating. #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Sunt {minutes} trecute de ora {hours}" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} h {minutes} min" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} h, {minutes} min, {seconds} sec" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Este ora {hours}:{minutes}" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "Este ora {hours}:{minutes}:{seconds}" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +#, fuzzy +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Un ceas și calendar avansat pentru NVDA.\n" +"NVDA+F12, spune cât e ceasul.\n" +"NVDA+F12 apăsat de două ori rapid, spune în ce dată suntem.\n" +"NVDA+F12 apăsat de trei ori rapid, spune ziua în care suntem, numărul " +"săptămânii, anul curent și câte zile mai sunt până la Revelion.\n" +"Pentru alte instrucțiuni, apăsați butonul de ajutor, care se află în " +"administratorul de suplimente." + +#~ msgid "Clock se&ttings..." +#~ msgstr "Setări ceas..." + +#~ msgid "Clock and calendar setup" +#~ msgstr "Setări ceas și calendar" + +#~ msgid "Clock setup" +#~ msgstr "Setări ceas" + +#~ msgid "Clock setup for times and dates" +#~ msgstr "Setări ceas pentru ore și date" + +#~ msgid "Alarm settin&gs" +#~ msgstr "Se&tări alarmă" + +#~ msgid "" +#~ "The value you entered for your quiet hours is erroneous, for a 24-hour " +#~ "format, the value must be HH:MM, for a 12-hour format, the value must be " +#~ "HH:MM followed by the AM or PM suffix, please reread the documentation. " +#~ "So your quiet hours have been deactivated for prevent any error in the " +#~ "configuration file." +#~ msgstr "" +#~ "Valoarea pe care ați introdus-o pentru orele de liniște este eronată. " +#~ "Pentru formatul de 24 de ore, valoarea trebuie să fie HH:MM. Pentru " +#~ "formatul de 12 ore, valoarea trebuie să fie introdusă în același format, " +#~ "urmată de sufixul AM sau PM. Vă rugăm să recitiți documentația. Așadar, " +#~ "orele de liniște au fost dezactivate pentru prevenirea vreunei erori din " +#~ "fișierul de configurare." + +#~ msgid "Error" +#~ msgstr "Eroare" + +#~ msgid "Alarm setup" +#~ msgstr "Setare alarmă" + +#~ msgid "Seconds" +#~ msgstr "Secunde" + +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "Alegeți tipul de &intrare a cronometrului înainte de a suna alarma:" + +#~ msgid "" +#~ "\n" +#~ "\t\tS: Starts, resets or stops the stopwatch.\n" +#~ "\t\tR: Resets stopwatch to 0 without restarting it.\n" +#~ "\t\tA: Gives the remaining and elapsed time before the next alarm.\n" +#~ "\t\tC: Cancel the next alarm.\n" +#~ "\t\tSpacebar: Speaks current stopwatch or count-down timer.\n" +#~ "\t\tH: List all layered commands (Help).\n" +#~ "\t\t" +#~ msgstr "" +#~ "\n" +#~ "\t\tS: Pornește, resetează sau oprește cronometrul.\n" +#~ "\t\tR: Resetează cronometrul la 0 fără să-l repornească..\n" +#~ "\t\tA: dă timpul scurs și timpul rămas înainte de alarma următoare.\n" +#~ "\t\tC: Anulează alarma următoare.\n" +#~ "\t\tSpacebar: Oprește cronometrul curent sau pe cel al numărătorii " +#~ "inverse.\n" +#~ "\t\tH: Listează toate comenzile stratificate (Ajutor).\n" +#~ "\t\t" diff --git a/addon/locale/ru/LC_MESSAGES/nvda.po b/addon/locale/ru/LC_MESSAGES/nvda.po index 349dc75..c6a12a7 100644 --- a/addon/locale/ru/LC_MESSAGES/nvda.po +++ b/addon/locale/ru/LC_MESSAGES/nvda.po @@ -1,9 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 00:45\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2026-03-06 19:52+0000\n" +"PO-Revision-Date: 2026-03-30 00:45\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -18,438 +18,438 @@ msgstr "" "X-Crowdin-File-ID: 454\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 +#: addon/installTasks.py:32 msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" msgstr "Используемый вами формат даты и времени несовместим с этой версией дополнения , это будет исправлено во время установки. Нажмите \"ОК\", чтобы подтвердить эти исправления" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 +#: addon/installTasks.py:36 msgid "Time and date format corrections" msgstr "Исправления формата даты и времени" -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "Часы" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "Формат отображения &времени:" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "Формат отображения &даты:" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "отключено" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "каждые 5 минут" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "каждые 10 минут" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "каждые 15 минут" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "каждые 30 минут" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "каждый час" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "&Интервал:" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "сообщение и звук" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "только сообщение" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "только звук" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "&Объявление времени:" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "&звук боя часов:" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "Разделять &сигналы часов и промежуточных минут" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "Звук сигнала промежуточных &минут:" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "&Тихий час" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "12-часовой формат" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "24-часовой формат" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "&Формат времени тихого часа:" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "Время начала тихого часа" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "Время окончания тихого часа" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "Добавить свой звук" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "Час:" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "Минута:" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "Выберите свой звуковой файл" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "Расписание будильников" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "часов" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "минут" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "секунд" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "&Длительность будильника в:" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "&Продолжительность:" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "Звук &будильника:" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "&Остановить" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "&Приостановить" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "Выберите свой звуковой файл будильника" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "Вы выбрали будильник, который будет срабатывать через {tm} {unit}" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "Подтверждение" - #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 +#: addon/globalPlugins/clock/formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" msgstr "Сейчас {hours} часов {minutes} минут" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 +#: addon/globalPlugins/clock/formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" msgstr "Сейчас {hours} часов, {minutes} минут и {seconds} секунд" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 +#: addon/globalPlugins/clock/formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" msgstr "{hours} часов, {minutes} минут" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 +#: addon/globalPlugins/clock/formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" msgstr "{hours} часов, {minutes} минут, {seconds} секунд" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 +#: addon/globalPlugins/clock/formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" msgstr "Прошло {minutes} минут с начала {hours} часов" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 +#: addon/globalPlugins/clock/formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" msgstr "{hours} ч {minutes} мин" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 +#: addon/globalPlugins/clock/formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" msgstr "{hours} ч, {minutes} мин, {seconds} сек" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 +#: addon/globalPlugins/clock/formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" msgstr "Сейчас {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 +#: addon/globalPlugins/clock/formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" msgstr "Сейчас {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 +#: addon/globalPlugins/clock/formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" msgstr "{fmt} (24-часовой формат)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 +#: addon/globalPlugins/clock/formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" msgstr "{fmt} (12-часовой формат)" #. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 +#: addon/globalPlugins/clock/paths.py:33 msgid "Custom" msgstr "Свой" -#: addon\globalPlugins\clock\__init__.py:74 +#: addon/globalPlugins/clock/__init__.py:74 #, python-brace-format msgid "{hours} hours, " msgstr "{hours} часов, " -#: addon\globalPlugins\clock\__init__.py:76 +#: addon/globalPlugins/clock/__init__.py:76 #, python-brace-format msgid "{minutes} minutes, " msgstr "{minutes} минут, " -#: addon\globalPlugins\clock\__init__.py:78 +#: addon/globalPlugins/clock/__init__.py:78 #, python-brace-format msgid "{seconds} seconds" msgstr "{seconds} секунд" -#: addon\globalPlugins\clock\__init__.py:79 +#: addon/globalPlugins/clock/__init__.py:79 msgid "0 seconds" msgstr "0 секунд" +#. Translators: Script category for Clock addon commands in input gestures dialog. +#. Translators: This is the label for the clock settings panel. +#. Add-on summary/title, usually the user visible name of the add-on +#. Translators: Summary/title for this add-on +#. to be shown on installation and add-on information found in add-on store +#: addon/globalPlugins/clock/__init__.py:174 +#: addon/globalPlugins/clock/clockSettingsGUI.py:28 buildVars.py:21 +msgid "Clock" +msgstr "Часы" + #. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 +#: addon/globalPlugins/clock/__init__.py:187 msgid "Schedule a&larms..." msgstr "Расписание &будильников..." #. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 +#: addon/globalPlugins/clock/__init__.py:189 msgid "Allows you to schedule an alarm" msgstr "Позволяет установить будильник" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 +#: addon/globalPlugins/clock/__init__.py:252 msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." msgstr "Произносит текущее время. При быстром нажатии дважды, произносит текущую дату. При быстром нажатии трижды сообщает текущий день, номер недели, текущий год и дни, оставшиеся до конца года." -#: addon\globalPlugins\clock\__init__.py:277 +#: addon/globalPlugins/clock/__init__.py:277 #, python-brace-format msgid "Day {day}, week {week} of {year}, remaining days {remain}." msgstr "День {day}, неделю {week} от {year} года, оставшихся дней {remain}." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 +#: addon/globalPlugins/clock/__init__.py:320 msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." msgstr "Команды уровня часов и календаря. После нажатия этого сочетания клавиш, нажмите H для получения дополнительной справки." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 +#: addon/globalPlugins/clock/__init__.py:339 msgid "Starts, resets or stops the stopwatch." msgstr "Запускает, сбрасывает или останавливает секундомер." -#: addon\globalPlugins\clock\__init__.py:348 +#: addon/globalPlugins/clock/__init__.py:348 msgid "Reset. Running." msgstr "Сброс. Запуск." -#: addon\globalPlugins\clock\__init__.py:351 +#: addon/globalPlugins/clock/__init__.py:351 msgid "Running." msgstr "Запущен." -#: addon\globalPlugins\clock\__init__.py:354 +#: addon/globalPlugins/clock/__init__.py:354 #, python-brace-format msgid "{0} stopped." msgstr "{0} остановлен." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 +#: addon/globalPlugins/clock/__init__.py:359 msgid "Speaks current stopwatch or count-down timer." msgstr "Сообщает текущее время таймера или секундомера." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 +#: addon/globalPlugins/clock/__init__.py:370 msgid "Gives the remaining and elapsed time before the next alarm." msgstr "Предоставляет прошедшее и оставшееся время до срабатывания следующего будильника." -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 +#: addon/globalPlugins/clock/__init__.py:380 +#: addon/globalPlugins/clock/__init__.py:459 #, python-brace-format msgid "Elapsed time {elapsed}, remaining time {remaining}." msgstr "Прошло {elapsed}, осталось {remaining}." -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 +#: addon/globalPlugins/clock/__init__.py:383 +#: addon/globalPlugins/clock/__init__.py:399 +#: addon/globalPlugins/clock/__init__.py:462 msgid "No alarm" msgstr "Нет будильника" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 +#: addon/globalPlugins/clock/__init__.py:389 msgid "Cancel the next alarm." msgstr "Отменяет следующий будильник." -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 +#: addon/globalPlugins/clock/__init__.py:397 +#: addon/globalPlugins/clock/__init__.py:456 msgid "Alarm cancelled" msgstr "Будильник отменён" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 +#: addon/globalPlugins/clock/__init__.py:405 msgid "Resets stopwatch to 0 without restarting it." msgstr "Сбрасывает секундомер на 0 без последующего его запуска." -#: addon\globalPlugins\clock\__init__.py:413 +#: addon/globalPlugins/clock/__init__.py:413 msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." msgstr "Секундомер был сброшен на 0. Используйте команду уровня часов, затем нажмите букву s для запуска." -#: addon\globalPlugins\clock\__init__.py:417 +#: addon/globalPlugins/clock/__init__.py:417 msgid "Stopwatch reset." msgstr "Секундомер сброшен." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 +#: addon/globalPlugins/clock/__init__.py:422 msgid "Lists available commands in clock command layer." msgstr "Перечисляет доступные команды уровня команд часов." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 +#: addon/globalPlugins/clock/__init__.py:433 msgid "Lists available commands in clock command layer, showing them in browse mode." msgstr "Перечисляет доступные команды уровня команд часов, показывая их в режиме обзора." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 +#: addon/globalPlugins/clock/__init__.py:445 msgid "Allows to check the next alarm. If pressed twice, cancels it." msgstr "Позволяет узнать время срабатывания следующего будильника. Если нажато дважды, отменяет его." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 +#: addon/globalPlugins/clock/__init__.py:468 msgid "If an alarm is too long, allows to stop it." msgstr "Если сигнал будильника слишком длинный, позволяет остановить его." -#: addon\globalPlugins\clock\__init__.py:474 +#: addon/globalPlugins/clock/__init__.py:474 msgid "No sound is launched." msgstr "Звук не воспроизводится." -#: addon\globalPlugins\clock\__init__.py:477 +#: addon/globalPlugins/clock/__init__.py:477 msgid "Sound stopped" msgstr "Звук остановлен" #. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 +#: addon/globalPlugins/clock/__init__.py:491 msgid "Schedule alarms dialog is already open." msgstr "Диалог Расписание будильников уже открыт." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 +#: addon/globalPlugins/clock/__init__.py:497 msgid "Display the clock settings dialog box." msgstr "Показывает диалог настроек часов." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 +#: addon/globalPlugins/clock/__init__.py:508 msgid "Display schedule alarms dialog box." msgstr "Показывает диалог расписания будильников." +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:32 +msgid "&Time display format:" +msgstr "Формат отображения &времени:" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:35 +msgid "&Date display format:" +msgstr "Формат отображения &даты:" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:39 +msgid "off" +msgstr "отключено" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:41 +msgid "every 5 minutes" +msgstr "каждые 5 минут" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:43 +msgid "every 10 minutes" +msgstr "каждые 10 минут" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:45 +msgid "every 15 minutes" +msgstr "каждые 15 минут" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:47 +msgid "every 30 minutes" +msgstr "каждые 30 минут" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:49 +msgid "every hour" +msgstr "каждый час" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:53 +msgid "&Interval:" +msgstr "&Интервал:" + +#. Translators: This is a choice of the time report choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:57 +msgid "message and sound" +msgstr "сообщение и звук" + +#. Translators: This is a choice of the time report choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:59 +msgid "message only" +msgstr "только сообщение" + +#. Translators: This is a choice of the time report choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:61 +msgid "sound only" +msgstr "только звук" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:65 +msgid "Time &announcement:" +msgstr "&Объявление времени:" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:68 +msgid "Clock chime &sound:" +msgstr "&звук боя часов:" + +#. Translators: This is the label for a checkbox in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:71 +msgid "&Separate hour and intermediate minute chimes" +msgstr "Разделять &сигналы часов и промежуточных минут" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:74 +msgid "Intermediate minutes chime &sound:" +msgstr "Звук сигнала промежуточных &минут:" + +#. Translators: This is the label for a checkbox in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:77 +msgid "&Quiet hours" +msgstr "&Тихий час" + +#. Translators: This is a choice of the quiet hours time format choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:81 +msgid "12-hour format" +msgstr "12-часовой формат" + +#. Translators: This is a choice of the quiet hours time format choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:83 +msgid "24-hour format" +msgstr "24-часовой формат" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:87 +msgid "Quiet hours time &format:" +msgstr "&Формат времени тихого часа:" + +#. Translators: This is the label for an group in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:96 +msgid "Quiet hours start time" +msgstr "Время начала тихого часа" + +#. Translators: This is the label for an group in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:99 +msgid "Quiet hours end time" +msgstr "Время окончания тихого часа" + +#: addon/globalPlugins/clock/clockSettingsGUI.py:120 +#: addon/globalPlugins/clock/clockSettingsGUI.py:128 +#: addon/globalPlugins/clock/clockSettingsGUI.py:384 +msgid "Add custom sound" +msgstr "Добавить свой звук" + +#. Translators: the hour label in quiet hours group. +#: addon/globalPlugins/clock/clockSettingsGUI.py:147 +#: addon/globalPlugins/clock/clockSettingsGUI.py:159 +msgid "Hour:" +msgstr "Час:" + +#. Translators: the minute label in quiet hours group. +#: addon/globalPlugins/clock/clockSettingsGUI.py:151 +#: addon/globalPlugins/clock/clockSettingsGUI.py:163 +msgid "Minute:" +msgstr "Минута:" + +#: addon/globalPlugins/clock/clockSettingsGUI.py:198 +msgid "Choose a custom sound file" +msgstr "Выберите свой звуковой файл" + +#. Translators: This is the label for the alarm settings panel. +#: addon/globalPlugins/clock/clockSettingsGUI.py:340 +msgid "Schedule alarms" +msgstr "Расписание будильников" + +#. Translators: This is an item of the alarm duration choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:346 +msgid "hours" +msgstr "часов" + +#. Translators: This is an item of the alarm duration choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:348 +msgid "minutes" +msgstr "минут" + +#. Translators: This is an item of the alarm duration choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:350 +msgid "seconds" +msgstr "секунд" + +#. Translators: This is the label for a combo box in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:354 +msgid "&Alarm duration in:" +msgstr "&Длительность будильника в:" + +#. Translators: This is the label for an edit field in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:357 +msgid "&Duration:" +msgstr "&Продолжительность:" + +#. Translators: This is the label for a combo box in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:360 +msgid "A&larm sound:" +msgstr "Звук &будильника:" + +#. Translators: This is the label for a button in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:363 +msgid "&Stop" +msgstr "&Остановить" + +#. Translators: This is the label for a button in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:366 +msgid "&Pause" +msgstr "&Приостановить" + +#: addon/globalPlugins/clock/clockSettingsGUI.py:413 +msgid "Choose a custom alarm sound file" +msgstr "Выберите свой звуковой файл будильника" + +#. Translators: The message displayed after a countdown for an alarm has been chosen. +#: addon/globalPlugins/clock/clockSettingsGUI.py:455 +#, python-brace-format +msgid "You've chosen an alarm to be triggered in {tm} {unit}" +msgstr "Вы выбрали будильник, который будет срабатывать через {tm} {unit}" + +#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. +#: addon/globalPlugins/clock/clockSettingsGUI.py:458 +msgid "Confirmation" +msgstr "Подтверждение" + #. Add-on description #. Translators: Long description to be shown for this add-on on add-on information from add-on store #: buildVars.py:24 diff --git a/addon/locale/sk/LC_MESSAGES/nvda.po b/addon/locale/sk/LC_MESSAGES/nvda.po index 312223f..4a6af3b 100644 --- a/addon/locale/sk/LC_MESSAGES/nvda.po +++ b/addon/locale/sk/LC_MESSAGES/nvda.po @@ -1,469 +1,434 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:48\n" -"Last-Translator: \n" -"Language-Team: Slovak\n" -"Language: sk_SK\n" +"Project-Id-Version: clock 18.12\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-13 15:50+1000\n" +"PO-Revision-Date: 2021-02-09 11:13+0100\n" +"Last-Translator: Ondrej Rosík \n" +"Language-Team: \n" +"Language: sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: sk\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 1.6.11\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Formát dátumu a času, ktorý ste používali, nie je kompatibilný s touto " +"verziou doplnku. Po nainštalovaní sa nastaví iný formát času a dátumu. Zmeny " +"potvrdíte tlačidlom OK." #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Oprava formátu času a dátumu" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} hodín," + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minút," + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} sekúnd" + +msgid "0 seconds" +msgstr "0 sekúnd" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Rozšírené hodiny a kalendár" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Nastavenia minutníka" + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Umožňuje nastaviť minutník" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Oznamuje čas. Stlačené 2 krát oznamuje dátum. Stlačené 3 krát oznamuje " +"aktuálny deň, číslo týždňa, aktuálny rok a počet dní zostávajúcich do konca " +"roka." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "" +"Deň {day}, týždeň {week} rok {year}, počet dní do konca roka: {remain}." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Príkazy pre rozšírené hodiny a kalendár. Po stlačení skratky stlačte h pre " +"ďalšiu pomoc." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Spustí, vynuluje alebo zastaví stopky." + +msgid "Reset. Running." +msgstr "Vynulované. Beží." + +msgid "Running." +msgstr "Beží." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} zastavené." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Oznamuje čast stopiek alebo minutníka." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Oznámy uplynutý a zostávajúci čas minutníka" + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Uplynulo {elapsed}, zostáva {remaining}." + +msgid "No alarm" +msgstr "Žiadny minutník" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Zruší aktuálny minutník." + +msgid "Alarm cancelled" +msgstr "minutník zrušený" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Vynuluje a zastaví stopky." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." msgstr "" +"Stopky sú vynulované. Použite príkaz rozšírené hodiny a kalendár a stlačte s " +"pre spustenie stopiek." + +msgid "Stopwatch reset." +msgstr "Stopky vynulované." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "" +"Zobrazí príkazy dostupné po stlačení skratky rozšírené hodiny a kalendár." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "Skontroluje čas minutníka. Stlačené dvakrát minutník zastaví." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Zastaví minutník." + +msgid "No sound is launched." +msgstr "Nehrá žiadny zvuk." + +msgid "Sound stopped" +msgstr "Prehrávanie zastavené" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "Dialóg nastavenia minutníka je už otvorený." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Zobrazí dialóg nastavení rozšírených hodín a kalendára." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Zobrazí dialóg nastavenia minutníka." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "&Formát času:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "&Formát dátumu:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "vypnuté" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "každých 10 minút" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "každých 15 minút" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "každých 30 minút" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "každú hodinu" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&Oznamovať:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "reč a zvuk" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "Reč" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "Zvuk" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&oznamovanie času:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&Zvuk:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" -msgstr "" +msgstr "Oddelené zvuky pre celé hodiny a minúty" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "Zvuk pre minúty" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&tiché hodiny" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "&12-hodinový formát" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "&24-hodinový formát" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "&Formát tichých hodín:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Neoznamovať čas od:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Neoznamovať čas do:" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Hodiny:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minúty:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Nastavenie minutníka" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "hodiny" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "minúty" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "sekundy" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "Č&as odpočítania:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "O&dpočítanie:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "Z&vvuk:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&zastaviť" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Pozastaviť" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Minutník sa spustí o {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Potvrdenie" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Je {hours} hodín a {minutes} minút" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Je {hours} hodín, {minutes} minút a {seconds} sekúnd" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} hodín, {minutes} minút" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} hodín, {minutes} minút, {seconds} sekúnd" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Je {minutes} po {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} h {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} h, {minutes} min, {seconds} sek" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Je {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Je {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (24-hodinový formát)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (12-hodinový formát)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Rozšírené hodiny a kalendár pre NVDA.\n" +"NVDA+f12 oznamuje čas.\n" +"2 krát rýchlo za sebou oznamuje dátum.\n" +"3 krát rýchlo za sebou oznamuje aktuálny deň, číslo týždňa, aktuálny rok a " +"počet dní do konca roka.\n" +"Pre viac informácií si detailnejšie pozrite návod v doplnku." + +#~ msgid "Clock se&ttings..." +#~ msgstr "Na&stavenia rozšírených hodín a kalendára..." + +#~ msgid "Clock and calendar setup" +#~ msgstr "Nastavenia doplnku rozšírené hodiny a kalendár" + +#~ msgid "Clock setup" +#~ msgstr "Hodiny" + +#~ msgid "Clock setup for times and dates" +#~ msgstr "Nastavenia času a dátumu" + +#~ msgid "Alarm settin&gs" +#~ msgstr "&Minutník" + +#~ msgid "" +#~ "The value you entered for your quiet hours is erroneous, for a 24-hour " +#~ "format, the value must be HH:MM, for a 12-hour format, the value must be " +#~ "HH:MM followed by the AM or PM suffix, please reread the documentation. " +#~ "So your quiet hours have been deactivated for prevent any error in the " +#~ "configuration file." +#~ msgstr "" +#~ "Hodnoty, ktoré ste zadali pre tiché hodiny, sú nesprávne. Pri 24-" +#~ "hodinovom formáte musí byť hodnota HH:MM. Pre 12-hodinový formát musí byť " +#~ "hodnota HH:MM nasledované AM alebo PM. Znova si prečítajte dokumentáciu. " +#~ "Nateraz je oznamovanie času aktívne po celý deň." + +#~ msgid "Error" +#~ msgstr "Chyba" + +#~ msgid "Alarm setup" +#~ msgstr "Minutník" + +#~ msgid "Seconds" +#~ msgstr "sekundy" + +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "Nastavte &typ a zvuk odpočítavania:" + +#~ msgid "" +#~ "\n" +#~ "\t\tS: Starts, resets or stops the stopwatch.\n" +#~ "\t\tR: Resets stopwatch to 0 without restarting it.\n" +#~ "\t\tA: Gives the remaining and elapsed time before the next alarm.\n" +#~ "\t\tC: Cancel the next alarm.\n" +#~ "\t\tSpacebar: Speaks current stopwatch or count-down timer.\n" +#~ "\t\tH: List all layered commands (Help).\n" +#~ "\t\t" +#~ msgstr "" +#~ "\n" +#~ "\t\tS: Spustí, zastaví, obnoví alebo reštartuje stopky.\n" +#~ "\t\tR: Resetuje stopky pre ďalšie spustenie.\n" +#~ "\t\tA: Poskytuje informácie o ďalšom budíku.\n" +#~ "\t\tC: Zruší ďalší budík.\n" +#~ "\t\tSpacebar: Oznamuje aktuálne meraný čas.\n" +#~ "\t\tH: Zoznam všetkých príkazov (Pomoc).\n" +#~ "\t\t" diff --git a/addon/locale/sl/LC_MESSAGES/nvda.po b/addon/locale/sl/LC_MESSAGES/nvda.po deleted file mode 100644 index 2f5e78a..0000000 --- a/addon/locale/sl/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:49\n" -"Last-Translator: \n" -"Language-Team: Slovenian\n" -"Language: sl_SI\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: sl\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/so/LC_MESSAGES/nvda.po b/addon/locale/so/LC_MESSAGES/nvda.po deleted file mode 100644 index 6021401..0000000 --- a/addon/locale/so/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:49\n" -"Last-Translator: \n" -"Language-Team: Somali\n" -"Language: so_SO\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: so\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/sq/LC_MESSAGES/nvda.po b/addon/locale/sq/LC_MESSAGES/nvda.po deleted file mode 100644 index fb3600c..0000000 --- a/addon/locale/sq/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:43\n" -"Last-Translator: \n" -"Language-Team: Albanian\n" -"Language: sq_AL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: sq\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/sr/LC_MESSAGES/nvda.po b/addon/locale/sr/LC_MESSAGES/nvda.po index db43b29..d4eda0d 100644 --- a/addon/locale/sr/LC_MESSAGES/nvda.po +++ b/addon/locale/sr/LC_MESSAGES/nvda.po @@ -1,469 +1,375 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:48\n" -"Last-Translator: \n" -"Language-Team: Serbian (Latin)\n" -"Language: sr_CS\n" +"Project-Id-Version: clock 19.01.2\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2019-01-11 03:15+1000\n" +"PO-Revision-Date: 2023-03-13 10:04+0100\n" +"Last-Translator: Nikola Jović \n" +"Language-Team: Serbian \n" +"Language: sr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: sr-CS\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 3.2.2\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Format vremena i datuma koji ste koristili u prethodnoj verziji dodatka sat " +"nije kompatibilan sa ovom verzijom, ovo će biti ispravljeno u toku " +"instalacije" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Popravljanje formata datuma i vremena" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} časova, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} minuta, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} sekundi" + +msgid "0 seconds" +msgstr "0 sekunde" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Sat" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Podešavanje a&larma..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Dozvoljavaju vam da podesite alarm" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Izgovara trenutno vreme. Ako se pritisne dva puta brzo, izgovara trenutni " +"datum. Ako se pritisne 3 puta brzo, prijavljuje trenutni dan, broj nedelje, " +"trenutnu godinu i broj dana do kraja godine." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Dan{day}, nedelja{week} {year} godine, preostalo {remain} dana." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." msgstr "" +"Komande za prečicu sada i kalendara. Nakon što pritisnete ovu prečicu, " +"pritisnite h za dodatnu pomoć." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Pokreće, resetuje ili zaustavlja štopericu." + +msgid "Reset. Running." +msgstr "Resetovanje. Pokrenuto." + +msgid "Running." +msgstr "Pokrenuto." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} zaustavljen." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Izgovara trenutno vreme štoperice ili odbrojavanja." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Prikazuje proteklo i preostalo vreme do sledećeg alarma." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Proteklo vreme {elapsed}, preostalo vreme {remaining}." + +msgid "No alarm" +msgstr "Nema alarma" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Otkazuje sledeći alarm." + +msgid "Alarm cancelled" +msgstr "Alarm otkazan" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Vraća štopericu na 0 bez ponovnog pokretanja." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." +msgstr "" +"Štoperica je već vraćena na 0. Koristite prečicu sata i kalendara a zatim " +"slovo s da je pokrenete." + +msgid "Stopwatch reset." +msgstr "Resetovanje štoperice." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Prikazuje dostupne prečice komande sata i kalendara." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "" +"Dozvoljava proveru sledećeg alarma. Ako se pritisne 2 puta, otkazuje ga." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Ako je alarm predug, dozvoljava njegovo zaustavljanje." + +msgid "No sound is launched." +msgstr "Nijedan zvuk nije pokrenut." + +msgid "Sound stopped" +msgstr "Zvuk zaustavljen" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "Dijalog za podešavanje alarma je već otvoren." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Prikazuje dijalog podešavanja sata." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Prikazuje dijalog podešavanja alarma." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "Format prikazivanja &vremena:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "Format prikazivanja &datuma:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "isključeno" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "na svakih 10 minuta" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "na svakih 15 minuta" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "na svaka 30 minuta" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "svakog časa" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&Interval:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "poruka i zvuk" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "samo poruka" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "samo zvuk" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "&Izgovor vremena:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&Zvuk zvona sata:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" msgstr "" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" msgstr "" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Tihi časovi" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "12 - časovni format" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "24 - časovni format" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "&Format i vreme za tihe časove:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Vreme početka tihih časova" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Vreme kraja tihih časova" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Čas:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Minut:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Podešavanje alarma" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "časovi" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "minuti" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "sekunde" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "Trajanje &alarma kao:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Trajanje:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "zvuk &Alarma:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Zaustavi" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Pauziraj" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Izabrali ste da alarm bude aktiviran za {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Potvrda" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Tačno je {hours} časova i {minutes} minuta" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Tačno je {hours} časova, {minutes} minuta i {seconds} sekunde" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} časova, {minutes} minuta" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} časova, {minutes} minuta, {seconds} sekunde" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Prošlo je {minutes} od {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} h {minutes} min" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} h, {minutes} min, {seconds} sec" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Tačno je {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Tačno je {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (24-časovni format)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (12-časovni format)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Napredan sat i kalendar za NVDA.\n" +"NVDA+F12, prikazuje trenutno vreme.\n" +"NVDA+F12 pritisnuto dva puta brzo, prikazuje trenutni datum.\n" +"NVDA+F12 pritisnuto tri puta brzo, prijavljuje trenutni dan, broj nedelje, " +"trenutnu godinu i broj dana do kraja godine.\n" +"Za dodatna uputstva, pritisnite dugme pomoć dodatka u upravljaču dodacima." diff --git a/addon/locale/sv/LC_MESSAGES/nvda.po b/addon/locale/sv/LC_MESSAGES/nvda.po deleted file mode 100644 index 3be27ef..0000000 --- a/addon/locale/sv/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:49\n" -"Last-Translator: \n" -"Language-Team: Swedish\n" -"Language: sv_SE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: sv-SE\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/ta/LC_MESSAGES/nvda.po b/addon/locale/ta/LC_MESSAGES/nvda.po deleted file mode 100644 index 2745bda..0000000 --- a/addon/locale/ta/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:49\n" -"Last-Translator: \n" -"Language-Team: Tamil\n" -"Language: ta_IN\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ta\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/th/LC_MESSAGES/nvda.po b/addon/locale/th/LC_MESSAGES/nvda.po deleted file mode 100644 index de6f125..0000000 --- a/addon/locale/th/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:49\n" -"Last-Translator: \n" -"Language-Team: Thai\n" -"Language: th_TH\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: th\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/tr/LC_MESSAGES/nvda.po b/addon/locale/tr/LC_MESSAGES/nvda.po index 5b05494..bdcf6ca 100644 --- a/addon/locale/tr/LC_MESSAGES/nvda.po +++ b/addon/locale/tr/LC_MESSAGES/nvda.po @@ -1,9 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 00:45\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2026-03-06 19:52+0000\n" +"PO-Revision-Date: 2026-03-30 00:45\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -18,438 +18,438 @@ msgstr "" "X-Crowdin-File-ID: 454\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 +#: addon/installTasks.py:32 msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" msgstr "Kullandığınız tarih ve saat biçimi saat eklentisinin bu sürümüyle uyumlu değil, bu, eklenti yüklenirken düzeltilecek. Düzeltmeyi onaylamak için 'tamam'a basın" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 +#: addon/installTasks.py:36 msgid "Time and date format corrections" msgstr "Saat ve Tarih düzeltmelerİ" -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "Saat" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "Saa&t anons biçimi:" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "T&arih anons biçimi:" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "kapalı" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "her 5 dakikada" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "her 10 dakikada" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "her 15 dakikada" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "her 30 dakikada" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "saat başlarında" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "Saat anons ara&lığı:" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "konuşma ve ses" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "yalnızca konuşma" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "yalnızca ses" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "Saat &anonsu:" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "Saat &zil sesi:" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "Ayrı &saat ve ara dakika zilleri" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "Ara dakika &zil sesi:" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "Sessiz &saatler" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "12-saat formatı" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "24-saat formatı" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "Sessiz saatler &formatı:" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "Sessiz saatler başlangıç zamanı" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "Sessiz saatler bitiş zamanı" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "Özel ses ekle" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "Saat:" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "Dakika:" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "Özel bir ses dosyası seçin" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "Alarm ayarı" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "saat" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "dakika" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "saniye" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "&Alarm süre birimi:" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "&Süre:" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "A&larm sesi:" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "D&urdur" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "&Duraklat" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "Özel Alarm için bir ses dosyası seçin" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "{tm} {unit} içinde tetiklenecek bir alarm kurdunuz" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "Onay" - #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 +#: addon/globalPlugins/clock/formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" msgstr "{hours} saat ve {minutes} dakika" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 +#: addon/globalPlugins/clock/formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" msgstr "{hours} saat, {minutes} dakika ve {seconds} saniye" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 +#: addon/globalPlugins/clock/formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" msgstr "{hours} saat, {minutes} dakika" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 +#: addon/globalPlugins/clock/formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" msgstr "{hours} saat, {minutes} dakika, {seconds} saniye" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 +#: addon/globalPlugins/clock/formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" msgstr "Saat {hours} {minutes} geçiyor" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 +#: addon/globalPlugins/clock/formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" msgstr "{hours} s {minutes} dak" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 +#: addon/globalPlugins/clock/formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" msgstr "{hours} sa, {minutes} dak, {seconds} san" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 +#: addon/globalPlugins/clock/formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" msgstr "Saat {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 +#: addon/globalPlugins/clock/formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" msgstr "Saat {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 +#: addon/globalPlugins/clock/formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" msgstr "{fmt} (24-saat formatı)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 +#: addon/globalPlugins/clock/formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" msgstr "{fmt} (12-saat formatı)" #. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 +#: addon/globalPlugins/clock/paths.py:33 msgid "Custom" msgstr "Özel" -#: addon\globalPlugins\clock\__init__.py:74 +#: addon/globalPlugins/clock/__init__.py:74 #, python-brace-format msgid "{hours} hours, " msgstr "{hours} saat, " -#: addon\globalPlugins\clock\__init__.py:76 +#: addon/globalPlugins/clock/__init__.py:76 #, python-brace-format msgid "{minutes} minutes, " msgstr "{minutes} dakika, " -#: addon\globalPlugins\clock\__init__.py:78 +#: addon/globalPlugins/clock/__init__.py:78 #, python-brace-format msgid "{seconds} seconds" msgstr "{seconds} saniye" -#: addon\globalPlugins\clock\__init__.py:79 +#: addon/globalPlugins/clock/__init__.py:79 msgid "0 seconds" msgstr "0 saniye" +#. Translators: Script category for Clock addon commands in input gestures dialog. +#. Translators: This is the label for the clock settings panel. +#. Add-on summary/title, usually the user visible name of the add-on +#. Translators: Summary/title for this add-on +#. to be shown on installation and add-on information found in add-on store +#: addon/globalPlugins/clock/__init__.py:174 +#: addon/globalPlugins/clock/clockSettingsGUI.py:28 buildVars.py:21 +msgid "Clock" +msgstr "Saat" + #. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 +#: addon/globalPlugins/clock/__init__.py:187 msgid "Schedule a&larms..." msgstr "A&larm ayarla..." #. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 +#: addon/globalPlugins/clock/__init__.py:189 msgid "Allows you to schedule an alarm" msgstr "Alarm kurmanıza olanak tanır" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 +#: addon/globalPlugins/clock/__init__.py:252 msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." msgstr "Saati söyler. İki kez basılırsa tarihi, üç kez basılırsa Yılın kaçıncı gün ve haftasında olunduğunu ve yılın bitimine kaç gün kaldığını söyler." -#: addon\globalPlugins\clock\__init__.py:277 +#: addon/globalPlugins/clock/__init__.py:277 #, python-brace-format msgid "Day {day}, week {week} of {year}, remaining days {remain}." msgstr "Gün {day}, hafta {week}, yıl {year}, kalan gün {remain}" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 +#: addon/globalPlugins/clock/__init__.py:320 msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." msgstr "Saat ve takvim katman komutları. Bu tuşa bastıktan sonra ek yardım için H tuşuna basın." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 +#: addon/globalPlugins/clock/__init__.py:339 msgid "Starts, resets or stops the stopwatch." msgstr "Kronometreyi başlatır, durdurur veya sıfırlar." -#: addon\globalPlugins\clock\__init__.py:348 +#: addon/globalPlugins/clock/__init__.py:348 msgid "Reset. Running." msgstr "Sıfırla. çalışıyor." -#: addon\globalPlugins\clock\__init__.py:351 +#: addon/globalPlugins/clock/__init__.py:351 msgid "Running." msgstr "Çalışıyor." -#: addon\globalPlugins\clock\__init__.py:354 +#: addon/globalPlugins/clock/__init__.py:354 #, python-brace-format msgid "{0} stopped." msgstr "{0} durduruldu." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 +#: addon/globalPlugins/clock/__init__.py:359 msgid "Speaks current stopwatch or count-down timer." msgstr "Mevcut kronometre ya da geri sayım sayacını seslendirir." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 +#: addon/globalPlugins/clock/__init__.py:370 msgid "Gives the remaining and elapsed time before the next alarm." msgstr "Alarm öncesinde geçen ve kalan süre bilgisini söyler." -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 +#: addon/globalPlugins/clock/__init__.py:380 +#: addon/globalPlugins/clock/__init__.py:459 #, python-brace-format msgid "Elapsed time {elapsed}, remaining time {remaining}." msgstr "Geçen süre {elapsed}, kalan süre {remaining}." -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 +#: addon/globalPlugins/clock/__init__.py:383 +#: addon/globalPlugins/clock/__init__.py:399 +#: addon/globalPlugins/clock/__init__.py:462 msgid "No alarm" msgstr "Alarm yok" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 +#: addon/globalPlugins/clock/__init__.py:389 msgid "Cancel the next alarm." msgstr "Alarmı kapatır." -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 +#: addon/globalPlugins/clock/__init__.py:397 +#: addon/globalPlugins/clock/__init__.py:456 msgid "Alarm cancelled" msgstr "Alarm iptal edildi" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 +#: addon/globalPlugins/clock/__init__.py:405 msgid "Resets stopwatch to 0 without restarting it." msgstr "Kronometreyi sıfırlar ve yeniden başlatmaz." -#: addon\globalPlugins\clock\__init__.py:413 +#: addon/globalPlugins/clock/__init__.py:413 msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." msgstr "Kronometre zaten sıfırlanmış. Saat katmanlı komut tuşlarına bastıktan sonra 's'ye basarak tekrar başlatabilirsiniz." -#: addon\globalPlugins\clock\__init__.py:417 +#: addon/globalPlugins/clock/__init__.py:417 msgid "Stopwatch reset." msgstr "Kronometre sıfırlandı." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 +#: addon/globalPlugins/clock/__init__.py:422 msgid "Lists available commands in clock command layer." msgstr "Saat komut katmanındaki mevcut komutları listeler." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 +#: addon/globalPlugins/clock/__init__.py:433 msgid "Lists available commands in clock command layer, showing them in browse mode." msgstr "Saat komut katmanındaki mevcut komutları listeler ve bunları göz atma modunda gösterir." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 +#: addon/globalPlugins/clock/__init__.py:445 msgid "Allows to check the next alarm. If pressed twice, cancels it." msgstr "Alarmı control etmenize olanak tanır. Alarmı iptal etmek için iki kez basın." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 +#: addon/globalPlugins/clock/__init__.py:468 msgid "If an alarm is too long, allows to stop it." msgstr "Alarm çok uzunsa, durdurulmasına olanak tanır." -#: addon\globalPlugins\clock\__init__.py:474 +#: addon/globalPlugins/clock/__init__.py:474 msgid "No sound is launched." msgstr "Hiçbir ses başlatılmadı." -#: addon\globalPlugins\clock\__init__.py:477 +#: addon/globalPlugins/clock/__init__.py:477 msgid "Sound stopped" msgstr "Ses susturuldu" #. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 +#: addon/globalPlugins/clock/__init__.py:491 msgid "Schedule alarms dialog is already open." msgstr "Schedule alarms dialog is already open." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 +#: addon/globalPlugins/clock/__init__.py:497 msgid "Display the clock settings dialog box." msgstr "Saat ayarları iletişim kutusunu gösterir." #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 +#: addon/globalPlugins/clock/__init__.py:508 msgid "Display schedule alarms dialog box." msgstr "Alarm ayarı iletişim kutusunu gösterir." +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:32 +msgid "&Time display format:" +msgstr "Saa&t anons biçimi:" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:35 +msgid "&Date display format:" +msgstr "T&arih anons biçimi:" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:39 +msgid "off" +msgstr "kapalı" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:41 +msgid "every 5 minutes" +msgstr "her 5 dakikada" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:43 +msgid "every 10 minutes" +msgstr "her 10 dakikada" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:45 +msgid "every 15 minutes" +msgstr "her 15 dakikada" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:47 +msgid "every 30 minutes" +msgstr "her 30 dakikada" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:49 +msgid "every hour" +msgstr "saat başlarında" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:53 +msgid "&Interval:" +msgstr "Saat anons ara&lığı:" + +#. Translators: This is a choice of the time report choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:57 +msgid "message and sound" +msgstr "konuşma ve ses" + +#. Translators: This is a choice of the time report choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:59 +msgid "message only" +msgstr "yalnızca konuşma" + +#. Translators: This is a choice of the time report choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:61 +msgid "sound only" +msgstr "yalnızca ses" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:65 +msgid "Time &announcement:" +msgstr "Saat &anonsu:" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:68 +msgid "Clock chime &sound:" +msgstr "Saat &zil sesi:" + +#. Translators: This is the label for a checkbox in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:71 +msgid "&Separate hour and intermediate minute chimes" +msgstr "Ayrı &saat ve ara dakika zilleri" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:74 +msgid "Intermediate minutes chime &sound:" +msgstr "Ara dakika &zil sesi:" + +#. Translators: This is the label for a checkbox in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:77 +msgid "&Quiet hours" +msgstr "Sessiz &saatler" + +#. Translators: This is a choice of the quiet hours time format choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:81 +msgid "12-hour format" +msgstr "12-saat formatı" + +#. Translators: This is a choice of the quiet hours time format choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:83 +msgid "24-hour format" +msgstr "24-saat formatı" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:87 +msgid "Quiet hours time &format:" +msgstr "Sessiz saatler &formatı:" + +#. Translators: This is the label for an group in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:96 +msgid "Quiet hours start time" +msgstr "Sessiz saatler başlangıç zamanı" + +#. Translators: This is the label for an group in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:99 +msgid "Quiet hours end time" +msgstr "Sessiz saatler bitiş zamanı" + +#: addon/globalPlugins/clock/clockSettingsGUI.py:120 +#: addon/globalPlugins/clock/clockSettingsGUI.py:128 +#: addon/globalPlugins/clock/clockSettingsGUI.py:384 +msgid "Add custom sound" +msgstr "Özel ses ekle" + +#. Translators: the hour label in quiet hours group. +#: addon/globalPlugins/clock/clockSettingsGUI.py:147 +#: addon/globalPlugins/clock/clockSettingsGUI.py:159 +msgid "Hour:" +msgstr "Saat:" + +#. Translators: the minute label in quiet hours group. +#: addon/globalPlugins/clock/clockSettingsGUI.py:151 +#: addon/globalPlugins/clock/clockSettingsGUI.py:163 +msgid "Minute:" +msgstr "Dakika:" + +#: addon/globalPlugins/clock/clockSettingsGUI.py:198 +msgid "Choose a custom sound file" +msgstr "Özel bir ses dosyası seçin" + +#. Translators: This is the label for the alarm settings panel. +#: addon/globalPlugins/clock/clockSettingsGUI.py:340 +msgid "Schedule alarms" +msgstr "Alarm ayarı" + +#. Translators: This is an item of the alarm duration choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:346 +msgid "hours" +msgstr "saat" + +#. Translators: This is an item of the alarm duration choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:348 +msgid "minutes" +msgstr "dakika" + +#. Translators: This is an item of the alarm duration choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:350 +msgid "seconds" +msgstr "saniye" + +#. Translators: This is the label for a combo box in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:354 +msgid "&Alarm duration in:" +msgstr "&Alarm süre birimi:" + +#. Translators: This is the label for an edit field in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:357 +msgid "&Duration:" +msgstr "&Süre:" + +#. Translators: This is the label for a combo box in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:360 +msgid "A&larm sound:" +msgstr "A&larm sesi:" + +#. Translators: This is the label for a button in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:363 +msgid "&Stop" +msgstr "D&urdur" + +#. Translators: This is the label for a button in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:366 +msgid "&Pause" +msgstr "&Duraklat" + +#: addon/globalPlugins/clock/clockSettingsGUI.py:413 +msgid "Choose a custom alarm sound file" +msgstr "Özel Alarm için bir ses dosyası seçin" + +#. Translators: The message displayed after a countdown for an alarm has been chosen. +#: addon/globalPlugins/clock/clockSettingsGUI.py:455 +#, python-brace-format +msgid "You've chosen an alarm to be triggered in {tm} {unit}" +msgstr "{tm} {unit} içinde tetiklenecek bir alarm kurdunuz" + +#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. +#: addon/globalPlugins/clock/clockSettingsGUI.py:458 +msgid "Confirmation" +msgstr "Onay" + #. Add-on description #. Translators: Long description to be shown for this add-on on add-on information from add-on store #: buildVars.py:24 diff --git a/addon/locale/uk/LC_MESSAGES/nvda.po b/addon/locale/uk/LC_MESSAGES/nvda.po index cb97913..13a11e6 100644 --- a/addon/locale/uk/LC_MESSAGES/nvda.po +++ b/addon/locale/uk/LC_MESSAGES/nvda.po @@ -1,469 +1,476 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:50\n" -"Last-Translator: \n" -"Language-Team: Ukrainian\n" -"Language: uk_UA\n" +"Project-Id-Version: clock 19.09\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2023-10-20 10:20+0300\n" +"Last-Translator: Volodymyr Pyrih \n" +"Language-Team: \n" +"Language: uk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: uk\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n" +"X-Generator: Poedit 3.4\n" +"X-Poedit-Basepath: ../../../globalPlugins\n" +"X-Poedit-SearchPath-0: .\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Формат дати й часу, який ви використовували, не сумісний з цією версією " +"годинника, його буде виправлено під час встановлення. Для підтвердження цих " +"виправлень натисніть «Гаразд»" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Виправлення формату часу й дати" + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} година, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} хвилин, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} секунд" + +msgid "0 seconds" +msgstr "0 секунд" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Годинник" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "Запланувати &таймер..." + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "Дозволяє вам запланувати таймер" + +#. Translators: Message presented in input help mode. +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Промовляє поточний час. Якщо натиснути швидко двічі, промовляє поточну дату. " +"Якщо натиснути швидко тричі, промовляє поточний день, номер тижня поточного " +"року і кількість днів, яка залишилася до кінця року." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "" +"День {day}, {week} тиждень {year} року, до кінця року залишилося {remain} " +"днів." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Багаторівневі команди годинника й календаря. Після натискання цієї команди " +"натисніть a для додаткової інформації." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Запускає, перезапускає або зупиняє секундомір." + +msgid "Reset. Running." +msgstr "Обнулено. Запущено." + +msgid "Running." +msgstr "Запущено." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} зупинено." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "Промовляє поточний секундомір або таймер зворотного відліку." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "Повідомляє про час, який минув та залишився до наступного таймера." + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Минуло часу {elapsed}, залишилося часу {remaining}" + +msgid "No alarm" +msgstr "Таймер вимкнено" + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "Скасовує наступний таймер." + +msgid "Alarm cancelled" +msgstr "Таймер скасовано" + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Обнуляє секундомір без перезапуску." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." msgstr "" +"Секундомір вже обнулено. Щоб запустити його, натисніть багаторівневу команду " +"і слідом за нею s." + +msgid "Stopwatch reset." +msgstr "Перезапуск секундоміра." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Перелічує доступні багаторівневі команди годинника." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "" +"Дозволяє перевірити наступний таймер. Якщо натиснути двічі, вимикає його." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "Якщо таймер задовгий, дозволяє зупинити його." + +msgid "No sound is launched." +msgstr "Немає звуку." + +msgid "Sound stopped" +msgstr "Звук вимкнено" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "Діалог планування таймера вже відкрито." + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Показує діалог налаштувань годинника." + +#. Translators: Message presented in input help mode. +msgid "Display schedule alarms dialog box." +msgstr "Показує діалог планування таймера." #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "&Формат виведення часу:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "&формат виведення дати:" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" +msgstr "вимкнено" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "кожні 10 хвилин" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "кожні 15 хвилин" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "кожні півгодини" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "щогодини" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 msgid "&Interval:" -msgstr "" +msgstr "&Часовий проміжок:" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 msgid "message and sound" -msgstr "" +msgstr "повідомлення і звук" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 msgid "message only" -msgstr "" +msgstr "лише повідомлення" #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "лише звук" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "Оголошення &часу:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "Звук &годинника:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 msgid "&Separate hour and intermediate minute chimes" -msgstr "" +msgstr "Розділяти &сигнали годин та проміжних хвилин" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 msgid "Intermediate minutes chime &sound:" -msgstr "" +msgstr "Звук сигналу проміжних &хвилин:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Тихі години" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 msgid "12-hour format" -msgstr "" +msgstr "12-годинний формат" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 msgid "24-hour format" -msgstr "" +msgstr "24-годинний формат" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 msgid "Quiet hours time &format:" -msgstr "" +msgstr "Формат часу &тихих годин:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 msgid "Quiet hours start time" -msgstr "" +msgstr "Початок часу тихих годин" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Завершення часу тихих годин" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 msgid "Hour:" -msgstr "" +msgstr "Година:" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Хвилина:" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" -msgstr "" +msgstr "Запланувати таймер" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 msgid "hours" -msgstr "" +msgstr "годинах" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 msgid "minutes" -msgstr "" +msgstr "хвилинах" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 msgid "seconds" -msgstr "" +msgstr "секундах" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 msgid "&Alarm duration in:" -msgstr "" +msgstr "&Тривалість таймера у:" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" -msgstr "" +msgstr "&Тривалість:" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "Звук &таймера:" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Зупинити" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Пауза" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Ви обрали таймер, який спрацює через {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Підтвердження" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Зараз {hours} година {minutes} хвилин" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Зараз {hours} година, {minutes} хвилин та {seconds} секунд" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} година, {minutes} хвилин" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} година, {minutes} хвилин, {seconds} секунд" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Зараз {minutes} після {hours}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} год {minutes} хв" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} год, {minutes} хв, {seconds} сек" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Зараз {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" +msgstr "Зараз {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" -msgstr "" +msgstr "{fmt} (24-годинний формат)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "{fmt} (12-годинний формат)" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Розширений годинник і календар для NVDA.\n" +"NVDA+F12, промовляє поточний час.\n" +"NVDA+F12, натиснуті двічі і швидко, промовляє поточну дату.\n" +"NVDA+F12 натиснуті швидко тричі, промовляє поточний день, номер тижня " +"поточного року і кількість днів, які залишилися до кінця року.\n" +"Для отримання інших інструкцій натисніть кнопку «Довідка» у менеджері " +"додатків." + +#~ msgid "Clock se&ttings..." +#~ msgstr "Налаштування &годинника..." + +#~ msgid "Clock and calendar setup" +#~ msgstr "Встановлення годинника й календаря" + +#~ msgid "Clock setup for times and dates" +#~ msgstr "Встановлення часу й дати" + +#~ msgid "Alarm settin&gs" +#~ msgstr "Налаштування &таймера" + +#~ msgid "" +#~ "Speaks current time. If pressed twice quickly, speaks current date. If " +#~ "pressed thrice quickly, reports the current day, the week number, the " +#~ "current year and the days remaining before the end of the year." +#~ msgstr "" +#~ "Промовляє поточний час. Якщо натиснути швидко двічі, промовляє поточну " +#~ "дату. Якщо натиснути швидко тричі, повідомляє про поточний день, номер " +#~ "тижня, поточний рік та скільки днів залишилося до кінця року." + +#~ msgid "Display the alarm settings dialog box." +#~ msgstr "Показує діалог налаштувань таймера." + +#~ msgid "Clock setup" +#~ msgstr "Встановлення годинника" + +#~ msgid "&interval:" +#~ msgstr "&проміжок:" + +#~ msgid "speech and sound" +#~ msgstr "мовлення і звук" + +#~ msgid "speech only" +#~ msgstr "лише мовлення" + +#~ msgid "Input in &24-hour format" +#~ msgstr "Введення у &24-годинному форматі" + +#~ msgid "Quiet hours start time:" +#~ msgstr "Час початку тихих годин:" + +#~ msgid "Quiet hours end time:" +#~ msgstr "Час закінчення тихих годин:" + +#~ msgid "" +#~ "The value you entered for your quiet hours is erroneous, for a 24-hour " +#~ "format, the value must be HH:MM, for a 12-hour format, the value must be " +#~ "HH:MM followed by the AM or PM suffix, please reread the documentation. " +#~ "So your quiet hours have been deactivated for prevent any error in the " +#~ "configuration file." +#~ msgstr "" +#~ "Введено хибне значення для тихих годин. Для 24-годинного формату значення " +#~ "має бути ГГ:ХХ, для 12-годинного формату значення має бути ГГ:ХХ, а потім " +#~ "суфікс AM або PM. Будь ласка, перечитайте документацію. Отже, для " +#~ "запобігання помилок у файлі конфігурації ваші тихі години деактивовано." + +#~ msgid "Error" +#~ msgstr "Помилка" + +#~ msgid "Alarm setup" +#~ msgstr "Встановлення таймера" + +#~ msgid "Hours" +#~ msgstr "Години" + +#~ msgid "Minutes" +#~ msgstr "Хвилини" + +#~ msgid "Seconds" +#~ msgstr "Секунди" + +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "Оберіть спосіб введення &часу, перш ніж таймер задзвонить:" + +#~ msgid "Alarm &time waiting:" +#~ msgstr "Час &очікування таймера:" + +#~ msgid "" +#~ "An advanced clock and calendar for NVDA.\n" +#~ "NVDA+F12, get current time.\n" +#~ "NVDA+F12 pressed twice quickly, get current date.\n" +#~ "NVDA+F12 pressed thrice quickly, reports the current day, the week " +#~ "number, the current year and the remaining days before the end of the " +#~ "year.\n" +#~ "For other instructions, press Add-on help button in add-ons manager." +#~ msgstr "" +#~ "Розширений годинник та календар для NVDA.\n" +#~ "NVDA+F12 повідомляє про поточний час.\n" +#~ "NVDA+F12, швидко натиснуті двічі, повідомляє поточну дату.\n" +#~ "NVDA+F12, швидко натиснуті тричі, повідомляє поточний день, номер тижня, " +#~ "поточний рік та скільки днів залишилося до кінця року.\n" +#~ "Для подальших інструкцій натисніть кнопку «Довідка» в менеджері додатків." diff --git a/addon/locale/ur/LC_MESSAGES/nvda.po b/addon/locale/ur/LC_MESSAGES/nvda.po deleted file mode 100644 index dbf57fd..0000000 --- a/addon/locale/ur/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:50\n" -"Last-Translator: \n" -"Language-Team: Urdu (Pakistan)\n" -"Language: ur_PK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: ur-PK\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/vi/LC_MESSAGES/nvda.po b/addon/locale/vi/LC_MESSAGES/nvda.po index b8638b8..9267133 100644 --- a/addon/locale/vi/LC_MESSAGES/nvda.po +++ b/addon/locale/vi/LC_MESSAGES/nvda.po @@ -1,469 +1,416 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the clock package. +# FIRST AUTHOR , YEAR. +# msgid "" msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:50\n" -"Last-Translator: \n" -"Language-Team: Vietnamese\n" -"Language: vi_VN\n" +"Project-Id-Version: clock 18.12\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2018-12-21 03:15+1000\n" +"PO-Revision-Date: 2021-09-28 14:07+0700\n" +"Last-Translator: Dang Manh Cuong \n" +"Language-Team: Vietnamese \n" +"Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: vi\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" +"X-Generator: Poedit 3.0\n" +"X-Poedit-SourceCharset: UTF-8\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" +msgid "" +"The date and time format you were using are not compatible with this version " +"of the Clock add-on, this will be fixed during installation. Click OK to " +"confirm these corrections" msgstr "" +"Định dạng ngày giờ mà bạn đã dùng không tương thích với phiên bản add-on " +"đồng hồ này. Điều đó sẽ được sửa trong khi cài đặt. Bấm OK để xác nhận việc " +"điều chỉnh" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 msgid "Time and date format corrections" -msgstr "" +msgstr "Điều chỉnh định dạng ngày và giờ " + +#, python-brace-format +msgid "{hours} hours, " +msgstr "{hours} giờ, " + +#, python-brace-format +msgid "{minutes} minutes, " +msgstr "{minutes} phút, " + +#, python-brace-format +msgid "{seconds} seconds" +msgstr "{seconds} giây" + +msgid "0 seconds" +msgstr "0 giây" -#. Translators: This is the label for the clock settings panel. #. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 +#. Translators: This is the label for the clock settings panel. +#. Add-on summary, usually the user visible name of the addon. +#. Translators: Summary for this add-on +#. to be shown on installation and add-on information found in Add-ons Manager. msgid "Clock" +msgstr "Đồng hồ" + +#. Translators: The name of the alarm item in NVDA Tools menu. +msgid "Schedule a&larms..." +msgstr "" + +#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. +msgid "Allows you to schedule an alarm" +msgstr "cho phép bạn thiết lập đồng hồ bấm giờ " + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "" +"Speaks current time. If pressed twice quickly, speaks current date. If " +"pressed three times quickly, reports the current day, the week number, the " +"current year and the days remaining before the end of the year." +msgstr "" +"Đọc thời gian hiện tại. Nếu bấm nhanh hai lần, đọc ngày hiện tại. nếu bấm " +"nhanh ba lần, thông báo ngày hiện tại, số tuần, năm hiện tại và số ngày còn " +"lại trước khi kết thúc năm." + +#, python-brace-format +msgid "Day {day}, week {week} of {year}, remaining days {remain}." +msgstr "Ngày {day}, Tuần {week} của {year}, Còn lại {remain} ngày." + +#. Translators: Message presented in input help mode. +msgid "" +"Clock and calendar layer commands. After pressing this keystroke, press H " +"for additional help." +msgstr "" +"Các lệnh layer cho đồng hồ và lịch. Sau khi bấm phím lệnh này, bấm H để xem " +"thông tin trợ giúp." + +#. Translators: Message presented in input help mode. +msgid "Starts, resets or stops the stopwatch." +msgstr "Bắt đầu, đặt lại hay dừng đồng hồ bấm giờ." + +msgid "Reset. Running." +msgstr "Đang khôi phục." + +msgid "Running." +msgstr "Đang chạy." + +#, python-brace-format +msgid "{0} stopped." +msgstr "{0} đã dừng." + +#. Translators: Message presented in input help mode. +msgid "Speaks current stopwatch or count-down timer." +msgstr "đọc đồng hồ bấm giờ hoặc thời gian đếm ngược hiện tại." + +#. Translators: Message presented in input help mode. +msgid "Gives the remaining and elapsed time before the next alarm." +msgstr "" +"đọc thời gian còn lại,và thời gian đã qua trước khi kết thúc đồng hồ bấm giờ " + +#, python-brace-format +msgid "Elapsed time {elapsed}, remaining time {remaining}." +msgstr "Thời gian đã qua {elapsed}, thời gian còn lại {remaining}." + +msgid "No alarm" +msgstr "không chạy đồng hồ bấm giờ " + +#. Translators: Message presented in input help mode. +msgid "Cancel the next alarm." +msgstr "hủy đồng hồ bấm giờ sắp tới " + +msgid "Alarm cancelled" +msgstr "đã hủy đồng hồ bấm giờ " + +#. Translators: Message presented in input help mode. +msgid "Resets stopwatch to 0 without restarting it." +msgstr "Đặt lại đồng hồ bấm giờ là 0 mà không bắt đầu lại." + +msgid "" +"The stopwatch is already reset to 0. Use the clock layer command followed by " +"s to start it." msgstr "" +"Đồng hồ bấm giờ đã được đặt lại thành 0. dùng lệnh layer rồi bấm s để bắt " +"đầu." + +msgid "Stopwatch reset." +msgstr "Đã đặt lại đồng hồ bấm giờ." + +#. Translators: Message presented in input help mode. +msgid "Lists available commands in clock command layer." +msgstr "Liệt kê các lệnh trong command layer của đồng hồ." + +#. Translators: Message presented in input help mode. +msgid "Allows to check the next alarm. If pressed twice, cancels it." +msgstr "" +"Cho phép kiểm tra đồng hồ bấm giờ tiếp theo. Nếu bấm hai lần thì hủy nó." + +#. Translators: Message presented in input help mode. +msgid "If an alarm is too long, allows to stop it." +msgstr "nếu âm thanh phát quá lâu , bạn có thể dừng lại nó " + +msgid "No sound is launched." +msgstr "Không có âm thanh nào được gọi." + +msgid "Sound stopped" +msgstr "Âm thanh đã dừng" + +#. Translators: error message when attempting to open more than one alarm settings dialogs. +msgid "Schedule alarms dialog is already open." +msgstr "" + +#. Translators: Message presented in input help mode. +msgid "Display the clock settings dialog box." +msgstr "Hiển thị hộp thoại cài đặt đồng hồ." + +#. Translators: Message presented in input help mode. +#, fuzzy +msgid "Display schedule alarms dialog box." +msgstr "Hiển thị hộp thoại cài đặt đồng hồ bấm giờ " #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 msgid "&Time display format:" -msgstr "" +msgstr "định dạng giờ &phút " #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 msgid "&Date display format:" -msgstr "" +msgstr "định &dạng ngày tháng " #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 msgid "off" -msgstr "" +msgstr "tắt" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 msgid "every 10 minutes" -msgstr "" +msgstr "mỗi 10 phút" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 msgid "every 15 minutes" -msgstr "" +msgstr "mỗi 15 phút" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 msgid "every 30 minutes" -msgstr "" +msgstr "mỗi 30 phút" #. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 msgid "every hour" -msgstr "" +msgstr "mỗi giờ" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 +#, fuzzy msgid "&Interval:" -msgstr "" +msgstr "&thời gian thông báo " #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 +#, fuzzy msgid "message and sound" -msgstr "" +msgstr "đọc và phát âm thanh " #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 +#, fuzzy msgid "message only" -msgstr "" +msgstr "đọc " #. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 msgid "sound only" -msgstr "" +msgstr "chỉ âm thanh" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 msgid "Time &announcement:" -msgstr "" +msgstr "Báo &giờ:" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 msgid "Clock chime &sound:" -msgstr "" +msgstr "&Chuông đồng hồ:" #. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 msgid "&Quiet hours" -msgstr "" +msgstr "&Giờ yên tĩnh" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 +#, fuzzy msgid "12-hour format" -msgstr "" +msgstr "Nhập định dạng &24 giờ" #. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 +#, fuzzy msgid "24-hour format" -msgstr "" +msgstr "Nhập định dạng &24 giờ" #. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 +#, fuzzy msgid "Quiet hours time &format:" -msgstr "" +msgstr "Thời gian kết thúc giờ yên tĩnh:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 +#, fuzzy msgid "Quiet hours start time" -msgstr "" +msgstr "Thời gian bắt đầu giờ yên tĩnh:" #. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 +#, fuzzy msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" +msgstr "Thời gian kết thúc giờ yên tĩnh:" #. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 +#, fuzzy msgid "Hour:" -msgstr "" +msgstr "Giờ" #. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 +#, fuzzy msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" +msgstr "Phút" #. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 msgid "Schedule alarms" msgstr "" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 +#, fuzzy msgid "hours" -msgstr "" +msgstr "Giờ" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 +#, fuzzy msgid "minutes" -msgstr "" +msgstr "Phút" #. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 +#, fuzzy msgid "seconds" -msgstr "" +msgstr "0 giây" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 +#, fuzzy msgid "&Alarm duration in:" -msgstr "" +msgstr "&Thời gian chờ đồng hồ bấm giờ :" #. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 msgid "&Duration:" msgstr "" #. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 msgid "A&larm sound:" -msgstr "" +msgstr "Â&m đồng hồ bấm giờ :" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 msgid "&Stop" -msgstr "" +msgstr "&Dừng" #. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" +msgstr "&Tạm dừng" #. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 #, python-brace-format msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" +msgstr "Bạn đã chọn đồng hồ bấm giờ trong {tm} {unit}" #. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 msgid "Confirmation" -msgstr "" +msgstr "Xác nhận" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" +msgstr "Bây giờ là {hours} giờ {minutes} phút" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" +msgstr "Bây giờ là {hours} giờ {minutes} phút {seconds} giây" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" -msgstr "" +msgstr "{hours} giờ {minutes} phút" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 +#. Translators: A time formating. #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" +msgstr "{hours} giờ {minutes} phút {seconds} giây" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 +#. Translators: A time formating. #, python-brace-format msgid "It's {minutes} past {hours}" -msgstr "" +msgstr "Bây giờ là {minutes} phút của {hours}" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h {minutes} min" -msgstr "" +msgstr "{hours} giờ {minutes} phút" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 +#. Translators: A time formating. #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" +msgstr "{hours} giờ {minutes} phút {seconds} giây" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}" -msgstr "" +msgstr "Bây giờ là {hours}:{minutes}" -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 +#. Translators: A time formating. #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" +msgstr "Bây giờ là {hours}:{minutes}:{seconds}" #. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" +#. Translators: Long description to be shown for this add-on on add-on information from add-ons manager +#, fuzzy +msgid "" +"An advanced clock and calendar for NVDA.\n" "NVDA+F12, get current time.\n" "NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - +"NVDA+F12 pressed three times quickly, reports the current day, the week " +"number, the current year and the remaining days before the end of the year.\n" +"For other instructions, press Add-on help button in add-ons manager." +msgstr "" +"Tiện ích lịch và đồng hồ nâng cao cho NVDA.\n" +"NVDA+F12, xem giờ hiện tại.\n" +"NVDA+F12 nhanh hai lần, xem ngày hiện tại.\n" +"NVDA+nhanh ba lần, xem ngày hiện tại, số tuần, năm hiện tại và số ngày còn " +"lại trước khi kết thúc năm.\n" +"Để có thêm thông tin, bấm nút trợ giúp cho add-on trong trình quản lý add-on." + +#~ msgid "Clock se&ttings..." +#~ msgstr "Cài đặ&t đồng hồ..." + +#~ msgid "Clock and calendar setup" +#~ msgstr "Cài đặt đồng hồ và lịch" + +#~ msgid "Clock setup" +#~ msgstr "Cài đặt đồng hồ" + +#~ msgid "Clock setup for times and dates" +#~ msgstr "Cài đặt cho ngày và giờ" + +#~ msgid "Alarm settin&gs" +#~ msgstr "cài đặt đồng hồ &bấm giờ " + +#~ msgid "" +#~ "The value you entered for your quiet hours is erroneous, for a 24-hour " +#~ "format, the value must be HH:MM, for a 12-hour format, the value must be " +#~ "HH:MM followed by the AM or PM suffix, please reread the documentation. " +#~ "So your quiet hours have been deactivated for prevent any error in the " +#~ "configuration file." +#~ msgstr "" +#~ "Giá trị bạn đã nhập cho thời gian yên tĩnh là không đúng. Với định dạng " +#~ "24 giờ, giá trị phải là HH:MM. Với định dạng 12 giờ, giá trị phải là HH:" +#~ "MM theo sau là hậu tố AM hoặc PM. Vui lòng đọc lại tài liệu hướng dẫn. " +#~ "Thời gian yên tĩnh của bạn đã bị vô hiệu hóa nhằm ngăn ngừa lỗi từ tập " +#~ "tin cấu hình." + +#~ msgid "Error" +#~ msgstr "Lỗi" + +#~ msgid "Alarm setup" +#~ msgstr "Cài đặt đồng hồ bấm giờ " + +#~ msgid "Seconds" +#~ msgstr "Giây" + +#~ msgid "Choose the type of timer &inputs before the alarm rings:" +#~ msgstr "Chọn kiểu thời gian " diff --git a/addon/locale/zh_CN/LC_MESSAGES/nvda.po b/addon/locale/zh_CN/LC_MESSAGES/nvda.po index 1067382..b2f17c1 100644 --- a/addon/locale/zh_CN/LC_MESSAGES/nvda.po +++ b/addon/locale/zh_CN/LC_MESSAGES/nvda.po @@ -1,9 +1,9 @@ msgid "" msgstr "" "Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 00:45\n" +"Report-Msgid-Bugs-To: nvda-translations@groups.io\n" +"POT-Creation-Date: 2026-03-06 19:52+0000\n" +"PO-Revision-Date: 2026-03-30 00:45\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -18,438 +18,438 @@ msgstr "" "X-Crowdin-File-ID: 454\n" #. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 +#: addon/installTasks.py:32 msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" msgstr "您使用的日期和时间格式与此版本的时钟插件不兼容,这将在安装过程中得到修复。单击“确认”以进行修复" #. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 +#: addon/installTasks.py:36 msgid "Time and date format corrections" msgstr "时间和日期格式修复" -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "时钟" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "时间显示格式(&T):" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "日期显示格式(&D)::" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "关闭" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "每 5 分钟" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "10分钟" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "15分钟" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "30 分钟" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "1 小时" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "报时间隔(&I):" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "语音和音效" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "只有语音" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "只有音效" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "报时方式(&A):" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "时钟铃声(&S):" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "区分整点与分钟铃声(&S)" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "分钟铃声(&S)" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "设置免打扰时段(&H)" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "12 小时制" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "24 小时制" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "免打扰时段时间格式:" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "免打扰时段开始" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "免打扰时段结束" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "添加自定义声音" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "时:" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "分:" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "选择自定义声音文件" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "设置提醒" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "小时" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "分钟" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "秒" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "倒计时单位:" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "倒计时时间(&D):" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "铃声(&L):" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "停止(&S)" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "暂停(&P)" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "选择自定义闹钟声音文件" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "将在 {tm} {unit} 后提醒您。" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "确认" - #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 +#: addon/globalPlugins/clock/formats.py:75 #, python-brace-format msgid "It's {hours} o'clock and {minutes} minutes" msgstr "现在是 {hours}点 {minutes}分" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 +#: addon/globalPlugins/clock/formats.py:77 #, python-brace-format msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" msgstr "现在是 {hours}点, {minutes}分, {seconds}秒" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 +#: addon/globalPlugins/clock/formats.py:81 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes" msgstr "{hours} 点, {minutes} 分" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 +#: addon/globalPlugins/clock/formats.py:83 #, python-brace-format msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" msgstr "{hours} 点, {minutes} 分, {seconds} 秒" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 +#: addon/globalPlugins/clock/formats.py:87 #, python-brace-format msgid "It's {minutes} past {hours}" msgstr "现在是 {hours}点 {minutes}分" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 +#: addon/globalPlugins/clock/formats.py:89 #, python-brace-format msgid "{hours} h {minutes} min" msgstr "{hours}点 {minutes}分" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 +#: addon/globalPlugins/clock/formats.py:91 #, python-brace-format msgid "{hours} h, {minutes} min, {seconds} sec" msgstr "{hours}点 {minutes}分 {seconds}秒" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 +#: addon/globalPlugins/clock/formats.py:93 #, python-brace-format msgid "It's {hours}:{minutes}" msgstr "现在是 {hours}:{minutes}" #. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 +#: addon/globalPlugins/clock/formats.py:95 #, python-brace-format msgid "It's {hours}:{minutes}:{seconds}" msgstr "现在是 {hours}:{minutes}:{seconds}" #. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 +#: addon/globalPlugins/clock/formats.py:112 #, python-brace-format msgid "{fmt} (24-hour format)" msgstr "{fmt}(24 小时制)" #. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 +#: addon/globalPlugins/clock/formats.py:114 #, python-brace-format msgid "{fmt} (12-hour format)" msgstr "{fmt}(12 小时制)" #. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 +#: addon/globalPlugins/clock/paths.py:33 msgid "Custom" msgstr "自定义" -#: addon\globalPlugins\clock\__init__.py:74 +#: addon/globalPlugins/clock/__init__.py:74 #, python-brace-format msgid "{hours} hours, " msgstr "{hours} 点 " -#: addon\globalPlugins\clock\__init__.py:76 +#: addon/globalPlugins/clock/__init__.py:76 #, python-brace-format msgid "{minutes} minutes, " msgstr "{minutes} 分 " -#: addon\globalPlugins\clock\__init__.py:78 +#: addon/globalPlugins/clock/__init__.py:78 #, python-brace-format msgid "{seconds} seconds" msgstr "{seconds} 秒" -#: addon\globalPlugins\clock\__init__.py:79 +#: addon/globalPlugins/clock/__init__.py:79 msgid "0 seconds" msgstr "0 秒" +#. Translators: Script category for Clock addon commands in input gestures dialog. +#. Translators: This is the label for the clock settings panel. +#. Add-on summary/title, usually the user visible name of the add-on +#. Translators: Summary/title for this add-on +#. to be shown on installation and add-on information found in add-on store +#: addon/globalPlugins/clock/__init__.py:174 +#: addon/globalPlugins/clock/clockSettingsGUI.py:28 buildVars.py:21 +msgid "Clock" +msgstr "时钟" + #. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 +#: addon/globalPlugins/clock/__init__.py:187 msgid "Schedule a&larms..." msgstr "设置提醒(&A)..." #. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 +#: addon/globalPlugins/clock/__init__.py:189 msgid "Allows you to schedule an alarm" msgstr "可以设置倒计时提醒" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 +#: addon/globalPlugins/clock/__init__.py:252 msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." msgstr "读出当前时间。连按两次,读出当前日期。连按三次,读出当前日期,周数,当前年份和本年剩余天数。" -#: addon\globalPlugins\clock\__init__.py:277 +#: addon/globalPlugins/clock/__init__.py:277 #, python-brace-format msgid "Day {day}, week {week} of {year}, remaining days {remain}." msgstr "{year}年,已经过去{day}天,{week}周,剩于{remain}天。" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 +#: addon/globalPlugins/clock/__init__.py:320 msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." msgstr "时钟命令面板:按下该键,随后按字母 H 获取帮助信息。" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 +#: addon/globalPlugins/clock/__init__.py:339 msgid "Starts, resets or stops the stopwatch." msgstr "启动、重置或停止秒表。" -#: addon\globalPlugins\clock\__init__.py:348 +#: addon/globalPlugins/clock/__init__.py:348 msgid "Reset. Running." msgstr "重置。开始。" -#: addon\globalPlugins\clock\__init__.py:351 +#: addon/globalPlugins/clock/__init__.py:351 msgid "Running." msgstr "开始。" -#: addon\globalPlugins\clock\__init__.py:354 +#: addon/globalPlugins/clock/__init__.py:354 #, python-brace-format msgid "{0} stopped." msgstr "{0} 停止。" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 +#: addon/globalPlugins/clock/__init__.py:359 msgid "Speaks current stopwatch or count-down timer." msgstr "读出当前秒表或上次计时器的时间。" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 +#: addon/globalPlugins/clock/__init__.py:370 msgid "Gives the remaining and elapsed time before the next alarm." msgstr "读出距离下依次提醒的剩余时间。" -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 +#: addon/globalPlugins/clock/__init__.py:380 +#: addon/globalPlugins/clock/__init__.py:459 #, python-brace-format msgid "Elapsed time {elapsed}, remaining time {remaining}." msgstr "已过去 {elapsed}, 还剩 {remaining}." -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 +#: addon/globalPlugins/clock/__init__.py:383 +#: addon/globalPlugins/clock/__init__.py:399 +#: addon/globalPlugins/clock/__init__.py:462 msgid "No alarm" msgstr "无提醒" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 +#: addon/globalPlugins/clock/__init__.py:389 msgid "Cancel the next alarm." msgstr "取消下一个提醒。" -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 +#: addon/globalPlugins/clock/__init__.py:397 +#: addon/globalPlugins/clock/__init__.py:456 msgid "Alarm cancelled" msgstr "已取消提醒" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 +#: addon/globalPlugins/clock/__init__.py:405 msgid "Resets stopwatch to 0 without restarting it." msgstr "重置秒表但不重新开始。" -#: addon\globalPlugins\clock\__init__.py:413 +#: addon/globalPlugins/clock/__init__.py:413 msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." msgstr "秒表已经重置为 0。在时钟命令面板按s可启动。" -#: addon\globalPlugins\clock\__init__.py:417 +#: addon/globalPlugins/clock/__init__.py:417 msgid "Stopwatch reset." msgstr "秒表重置。" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 +#: addon/globalPlugins/clock/__init__.py:422 msgid "Lists available commands in clock command layer." msgstr "读出时钟命令面板中的可用命令。" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 +#: addon/globalPlugins/clock/__init__.py:433 msgid "Lists available commands in clock command layer, showing them in browse mode." msgstr "以浏览模式显示时钟命令面板中的可用命令。" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 +#: addon/globalPlugins/clock/__init__.py:445 msgid "Allows to check the next alarm. If pressed twice, cancels it." msgstr "查看下一个提醒,连按两次取消。" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 +#: addon/globalPlugins/clock/__init__.py:468 msgid "If an alarm is too long, allows to stop it." msgstr "停止响铃(如果响铃时间过长)" -#: addon\globalPlugins\clock\__init__.py:474 +#: addon/globalPlugins/clock/__init__.py:474 msgid "No sound is launched." msgstr "不播放声音。" -#: addon\globalPlugins\clock\__init__.py:477 +#: addon/globalPlugins/clock/__init__.py:477 msgid "Sound stopped" msgstr "声音停止" #. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 +#: addon/globalPlugins/clock/__init__.py:491 msgid "Schedule alarms dialog is already open." msgstr "提醒设置对话框已打开。" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 +#: addon/globalPlugins/clock/__init__.py:497 msgid "Display the clock settings dialog box." msgstr "显示时钟设置对话框。" #. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 +#: addon/globalPlugins/clock/__init__.py:508 msgid "Display schedule alarms dialog box." msgstr "显示提醒设置对话框。" +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:32 +msgid "&Time display format:" +msgstr "时间显示格式(&T):" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:35 +msgid "&Date display format:" +msgstr "日期显示格式(&D)::" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:39 +msgid "off" +msgstr "关闭" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:41 +msgid "every 5 minutes" +msgstr "每 5 分钟" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:43 +msgid "every 10 minutes" +msgstr "10分钟" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:45 +msgid "every 15 minutes" +msgstr "15分钟" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:47 +msgid "every 30 minutes" +msgstr "30 分钟" + +#. Translators: This is a choice of the auto announce choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:49 +msgid "every hour" +msgstr "1 小时" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:53 +msgid "&Interval:" +msgstr "报时间隔(&I):" + +#. Translators: This is a choice of the time report choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:57 +msgid "message and sound" +msgstr "语音和音效" + +#. Translators: This is a choice of the time report choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:59 +msgid "message only" +msgstr "只有语音" + +#. Translators: This is a choice of the time report choices combo box. +#: addon/globalPlugins/clock/clockSettingsGUI.py:61 +msgid "sound only" +msgstr "只有音效" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:65 +msgid "Time &announcement:" +msgstr "报时方式(&A):" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:68 +msgid "Clock chime &sound:" +msgstr "时钟铃声(&S):" + +#. Translators: This is the label for a checkbox in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:71 +msgid "&Separate hour and intermediate minute chimes" +msgstr "区分整点与分钟铃声(&S)" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:74 +msgid "Intermediate minutes chime &sound:" +msgstr "分钟铃声(&S)" + +#. Translators: This is the label for a checkbox in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:77 +msgid "&Quiet hours" +msgstr "设置免打扰时段(&H)" + +#. Translators: This is a choice of the quiet hours time format choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:81 +msgid "12-hour format" +msgstr "12 小时制" + +#. Translators: This is a choice of the quiet hours time format choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:83 +msgid "24-hour format" +msgstr "24 小时制" + +#. Translators: This is the label for a combo box in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:87 +msgid "Quiet hours time &format:" +msgstr "免打扰时段时间格式:" + +#. Translators: This is the label for an group in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:96 +msgid "Quiet hours start time" +msgstr "免打扰时段开始" + +#. Translators: This is the label for an group in the Clock settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:99 +msgid "Quiet hours end time" +msgstr "免打扰时段结束" + +#: addon/globalPlugins/clock/clockSettingsGUI.py:120 +#: addon/globalPlugins/clock/clockSettingsGUI.py:128 +#: addon/globalPlugins/clock/clockSettingsGUI.py:384 +msgid "Add custom sound" +msgstr "添加自定义声音" + +#. Translators: the hour label in quiet hours group. +#: addon/globalPlugins/clock/clockSettingsGUI.py:147 +#: addon/globalPlugins/clock/clockSettingsGUI.py:159 +msgid "Hour:" +msgstr "时:" + +#. Translators: the minute label in quiet hours group. +#: addon/globalPlugins/clock/clockSettingsGUI.py:151 +#: addon/globalPlugins/clock/clockSettingsGUI.py:163 +msgid "Minute:" +msgstr "分:" + +#: addon/globalPlugins/clock/clockSettingsGUI.py:198 +msgid "Choose a custom sound file" +msgstr "选择自定义声音文件" + +#. Translators: This is the label for the alarm settings panel. +#: addon/globalPlugins/clock/clockSettingsGUI.py:340 +msgid "Schedule alarms" +msgstr "设置提醒" + +#. Translators: This is an item of the alarm duration choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:346 +msgid "hours" +msgstr "小时" + +#. Translators: This is an item of the alarm duration choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:348 +msgid "minutes" +msgstr "分钟" + +#. Translators: This is an item of the alarm duration choices. +#: addon/globalPlugins/clock/clockSettingsGUI.py:350 +msgid "seconds" +msgstr "秒" + +#. Translators: This is the label for a combo box in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:354 +msgid "&Alarm duration in:" +msgstr "倒计时单位:" + +#. Translators: This is the label for an edit field in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:357 +msgid "&Duration:" +msgstr "倒计时时间(&D):" + +#. Translators: This is the label for a combo box in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:360 +msgid "A&larm sound:" +msgstr "铃声(&L):" + +#. Translators: This is the label for a button in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:363 +msgid "&Stop" +msgstr "停止(&S)" + +#. Translators: This is the label for a button in the Alarm settings dialog. +#: addon/globalPlugins/clock/clockSettingsGUI.py:366 +msgid "&Pause" +msgstr "暂停(&P)" + +#: addon/globalPlugins/clock/clockSettingsGUI.py:413 +msgid "Choose a custom alarm sound file" +msgstr "选择自定义闹钟声音文件" + +#. Translators: The message displayed after a countdown for an alarm has been chosen. +#: addon/globalPlugins/clock/clockSettingsGUI.py:455 +#, python-brace-format +msgid "You've chosen an alarm to be triggered in {tm} {unit}" +msgstr "将在 {tm} {unit} 后提醒您。" + +#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. +#: addon/globalPlugins/clock/clockSettingsGUI.py:458 +msgid "Confirmation" +msgstr "确认" + #. Add-on description #. Translators: Long description to be shown for this add-on on add-on information from add-on store #: buildVars.py:24 diff --git a/addon/locale/zh_HK/LC_MESSAGES/nvda.po b/addon/locale/zh_HK/LC_MESSAGES/nvda.po deleted file mode 100644 index 75f65df..0000000 --- a/addon/locale/zh_HK/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: Chinese Traditional, Hong Kong\n" -"Language: zh_HK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: zh-HK\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/addon/locale/zh_TW/LC_MESSAGES/nvda.po b/addon/locale/zh_TW/LC_MESSAGES/nvda.po deleted file mode 100644 index 6aae553..0000000 --- a/addon/locale/zh_TW/LC_MESSAGES/nvda.po +++ /dev/null @@ -1,469 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: nvdaaddons\n" -"Report-Msgid-Bugs-To: 'nvda-translations@groups.io'\n" -"POT-Creation-Date: 2026-04-05 02:57+0000\n" -"PO-Revision-Date: 2026-04-06 01:44\n" -"Last-Translator: \n" -"Language-Team: Chinese Traditional\n" -"Language: zh_TW\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Crowdin-Project: nvdaaddons\n" -"X-Crowdin-Project-ID: 780748\n" -"X-Crowdin-Language: zh-TW\n" -"X-Crowdin-File: clock.pot\n" -"X-Crowdin-File-ID: 454\n" - -#. Translators: the label of a message box dialog. -#: addon\installTasks.py:32 -msgid "The date and time format you were using are not compatible with this version of the Clock add-on, this will be fixed during installation. Click OK to confirm these corrections" -msgstr "" - -#. Translators: the title of a message box dialog. -#: addon\installTasks.py:36 -msgid "Time and date format corrections" -msgstr "" - -#. Translators: This is the label for the clock settings panel. -#. Translators: Script category for Clock addon commands in input gestures dialog. -#. Add-on summary/title, usually the user visible name of the add-on -#. Translators: Summary/title for this add-on -#. to be shown on installation and add-on information found in add-on store -#: addon\globalPlugins\clock\clockSettingsGUI.py:28 -#: addon\globalPlugins\clock\__init__.py:174 buildVars.py:21 -msgid "Clock" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:32 -msgid "&Time display format:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:35 -msgid "&Date display format:" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:39 -msgid "off" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:41 -msgid "every 5 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:43 -msgid "every 10 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:45 -msgid "every 15 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:47 -msgid "every 30 minutes" -msgstr "" - -#. Translators: This is a choice of the auto announce choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:49 -msgid "every hour" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:53 -msgid "&Interval:" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:57 -msgid "message and sound" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:59 -msgid "message only" -msgstr "" - -#. Translators: This is a choice of the time report choices combo box. -#: addon\globalPlugins\clock\clockSettingsGUI.py:61 -msgid "sound only" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:65 -msgid "Time &announcement:" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:68 -msgid "Clock chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:71 -msgid "&Separate hour and intermediate minute chimes" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:74 -msgid "Intermediate minutes chime &sound:" -msgstr "" - -#. Translators: This is the label for a checkbox in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:77 -msgid "&Quiet hours" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:81 -msgid "12-hour format" -msgstr "" - -#. Translators: This is a choice of the quiet hours time format choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:83 -msgid "24-hour format" -msgstr "" - -#. Translators: This is the label for a combo box in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:87 -msgid "Quiet hours time &format:" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:96 -msgid "Quiet hours start time" -msgstr "" - -#. Translators: This is the label for an group in the Clock settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:99 -msgid "Quiet hours end time" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:120 -#: addon\globalPlugins\clock\clockSettingsGUI.py:128 -#: addon\globalPlugins\clock\clockSettingsGUI.py:384 -msgid "Add custom sound" -msgstr "" - -#. Translators: the hour label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:147 -#: addon\globalPlugins\clock\clockSettingsGUI.py:159 -msgid "Hour:" -msgstr "" - -#. Translators: the minute label in quiet hours group. -#: addon\globalPlugins\clock\clockSettingsGUI.py:151 -#: addon\globalPlugins\clock\clockSettingsGUI.py:163 -msgid "Minute:" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:198 -msgid "Choose a custom sound file" -msgstr "" - -#. Translators: This is the label for the alarm settings panel. -#: addon\globalPlugins\clock\clockSettingsGUI.py:340 -msgid "Schedule alarms" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:346 -msgid "hours" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:348 -msgid "minutes" -msgstr "" - -#. Translators: This is an item of the alarm duration choices. -#: addon\globalPlugins\clock\clockSettingsGUI.py:350 -msgid "seconds" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:354 -msgid "&Alarm duration in:" -msgstr "" - -#. Translators: This is the label for an edit field in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:357 -msgid "&Duration:" -msgstr "" - -#. Translators: This is the label for a combo box in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:360 -msgid "A&larm sound:" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:363 -msgid "&Stop" -msgstr "" - -#. Translators: This is the label for a button in the Alarm settings dialog. -#: addon\globalPlugins\clock\clockSettingsGUI.py:366 -msgid "&Pause" -msgstr "" - -#: addon\globalPlugins\clock\clockSettingsGUI.py:413 -msgid "Choose a custom alarm sound file" -msgstr "" - -#. Translators: The message displayed after a countdown for an alarm has been chosen. -#: addon\globalPlugins\clock\clockSettingsGUI.py:455 -#, python-brace-format -msgid "You've chosen an alarm to be triggered in {tm} {unit}" -msgstr "" - -#. Translators: The title of the dialog which appears when the user has chosen to trigger an alarm. -#: addon\globalPlugins\clock\clockSettingsGUI.py:458 -msgid "Confirmation" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:75 -#, python-brace-format -msgid "It's {hours} o'clock and {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:77 -#, python-brace-format -msgid "It's {hours} o'clock, {minutes} minutes and {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:81 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:83 -#, python-brace-format -msgid "{hours} o'clock, {minutes} minutes, {seconds} seconds" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:87 -#, python-brace-format -msgid "It's {minutes} past {hours}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:89 -#, python-brace-format -msgid "{hours} h {minutes} min" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:91 -#, python-brace-format -msgid "{hours} h, {minutes} min, {seconds} sec" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:93 -#, python-brace-format -msgid "It's {hours}:{minutes}" -msgstr "" - -#. Translators: A time formating (should be different from other time formattings) -#: addon\globalPlugins\clock\formats.py:95 -#, python-brace-format -msgid "It's {hours}:{minutes}:{seconds}" -msgstr "" - -#. Translators: A way to display 24-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:112 -#, python-brace-format -msgid "{fmt} (24-hour format)" -msgstr "" - -#. Translators: A way to display 12-hour formats in the time display formats list in the settings panel. -#: addon\globalPlugins\clock\formats.py:114 -#, python-brace-format -msgid "{fmt} (12-hour format)" -msgstr "" - -#. Translators: This is a choice in a list of sounds. -#: addon\globalPlugins\clock\paths.py:33 -msgid "Custom" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:74 -#, python-brace-format -msgid "{hours} hours, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:76 -#, python-brace-format -msgid "{minutes} minutes, " -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:78 -#, python-brace-format -msgid "{seconds} seconds" -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:79 -msgid "0 seconds" -msgstr "" - -#. Translators: The name of the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:187 -msgid "Schedule a&larms..." -msgstr "" - -#. Translators: The tooltyp text for the alarm item in NVDA Tools menu. -#: addon\globalPlugins\clock\__init__.py:189 -msgid "Allows you to schedule an alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:252 -msgid "Speaks current time. If pressed twice quickly, speaks current date. If pressed three times quickly, reports the current day, the week number, the current year and the days remaining before the end of the year." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:277 -#, python-brace-format -msgid "Day {day}, week {week} of {year}, remaining days {remain}." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:320 -msgid "Clock and calendar layer commands. After pressing this keystroke, press H for additional help." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:339 -msgid "Starts, resets or stops the stopwatch." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:348 -msgid "Reset. Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:351 -msgid "Running." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:354 -#, python-brace-format -msgid "{0} stopped." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:359 -msgid "Speaks current stopwatch or count-down timer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:370 -msgid "Gives the remaining and elapsed time before the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:380 -#: addon\globalPlugins\clock\__init__.py:459 -#, python-brace-format -msgid "Elapsed time {elapsed}, remaining time {remaining}." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:383 -#: addon\globalPlugins\clock\__init__.py:399 -#: addon\globalPlugins\clock\__init__.py:462 -msgid "No alarm" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:389 -msgid "Cancel the next alarm." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:397 -#: addon\globalPlugins\clock\__init__.py:456 -msgid "Alarm cancelled" -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:405 -msgid "Resets stopwatch to 0 without restarting it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:413 -msgid "The stopwatch is already reset to 0. Use the clock layer command followed by s to start it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:417 -msgid "Stopwatch reset." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:422 -msgid "Lists available commands in clock command layer." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:433 -msgid "Lists available commands in clock command layer, showing them in browse mode." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:445 -msgid "Allows to check the next alarm. If pressed twice, cancels it." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:468 -msgid "If an alarm is too long, allows to stop it." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:474 -msgid "No sound is launched." -msgstr "" - -#: addon\globalPlugins\clock\__init__.py:477 -msgid "Sound stopped" -msgstr "" - -#. Translators: error message when attempting to open more than one alarm settings dialogs. -#: addon\globalPlugins\clock\__init__.py:491 -msgid "Schedule alarms dialog is already open." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:497 -msgid "Display the clock settings dialog box." -msgstr "" - -#. Translators: Message presented in input help mode. -#: addon\globalPlugins\clock\__init__.py:508 -msgid "Display schedule alarms dialog box." -msgstr "" - -#. Add-on description -#. Translators: Long description to be shown for this add-on on add-on information from add-on store -#: buildVars.py:24 -msgid "An advanced clock and calendar for NVDA.\n" -"NVDA+F12, get current time.\n" -"NVDA+F12 pressed twice quickly, get current date.\n" -"NVDA+F12 pressed three times quickly, reports the current day, the week number, the current year and the remaining days before the end of the year.\n" -"For other instructions, press actions button in add-on store, then go to help." -msgstr "" - -#. Brief changelog for this version -#. Translators: what's new content for the add-on version to be shown in the add-on store -#: buildVars.py:33 -msgid "Changes for 20260221.0.1\n" -"Using the latest version of the addonTemplate." -msgstr "" - diff --git a/buildVars.py b/buildVars.py index 0dd1535..bdc7741 100644 --- a/buildVars.py +++ b/buildVars.py @@ -1,7 +1,7 @@ # Build customizations # Change this file instead of sconstruct or manifest files, whenever possible. -from site_scons.site_tools.NVDATool.typings import AddonInfo, BrailleTables, SymbolDictionaries +from site_scons.site_tools.NVDATool.typings import AddonInfo, BrailleTables, SymbolDictionaries, SpeechDictionaries # Since some strings in `addon_info` are translatable, # we need to include them in the .po files. @@ -107,3 +107,12 @@ # displayName (name of the speech dictionary shown to users and translatable), # mandatory (True when always enabled, False when not. symbolDictionaries: SymbolDictionaries = {} + +# Custom speech dictionaries (distinct from symbol dictionaries above) +# Speech dictionary files reside in the speechDicts folder and are named `name.dic`. +# If your add-on includes custom speech (pronunciation) dictionaries (most will not), fill out this dictionary. +# Each key is the name of the dictionary, +# with keys inside recording the following attributes: +# displayName (name of the speech dictionary shown to users and translatable), +# mandatory (True when always enabled, False when not). +speechDictionaries: SpeechDictionaries = {} diff --git a/pyproject.toml b/pyproject.toml index 2a27e8c..9cd309a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,15 +26,14 @@ dependencies = [ "scons==4.10.1", "Markdown==3.10", # Translations management - "requests==2.32.5", "nh3==0.3.2", "crowdin-api-client==1.24.1", - "lxml==6.0.2", + "lxml==6.1.0", "mdx_truly_sane_lists==1.3", "markdown-link-attr-modifier==0.2.1", "mdx-gh-links==0.4", # Lint - "uv==0.9.11", + "uv==0.11.6", "ruff==0.14.5", "pre-commit==4.2.0", "pyright[nodejs]==1.1.407", @@ -103,6 +102,7 @@ exclude = [ "__pycache__", ".venv", "site_scons", + ".github/scripts", # When excluding concrete paths relative to a directory, # not matching multiple folders by name e.g. `__pycache__`, # paths are relative to the configuration file. diff --git a/sconstruct b/sconstruct index 481a7ac..cdbad3f 100644 --- a/sconstruct +++ b/sconstruct @@ -61,6 +61,7 @@ env.Append( addon_info=buildVars.addon_info, brailleTables=buildVars.brailleTables, symbolDictionaries=buildVars.symbolDictionaries, + speechDictionaries=buildVars.speechDictionaries, ) if env["dev"]: diff --git a/site_scons/site_tools/NVDATool/__init__.py b/site_scons/site_tools/NVDATool/__init__.py index ff31eec..a71857d 100644 --- a/site_scons/site_tools/NVDATool/__init__.py +++ b/site_scons/site_tools/NVDATool/__init__.py @@ -13,6 +13,7 @@ - addon_info: .typing.AddonInfo - brailleTables: .typings.BrailleTables - symbolDictionaries: .typings.SymbolDictionaries +- speechDictionaries: .typings.SpeechDictionaries The following environment variables are required to build the HTML: @@ -49,6 +50,7 @@ def generate(env: Environment): env.SetDefault(brailleTables={}) env.SetDefault(symbolDictionaries={}) + env.SetDefault(speechDictionaries={}) manifestAction = env.Action( lambda target, source, env: generateManifest( @@ -57,6 +59,7 @@ def generate(env: Environment): addon_info=env["addon_info"], brailleTables=env["brailleTables"], symbolDictionaries=env["symbolDictionaries"], + speechDictionaries=env["speechDictionaries"], ) and None, lambda target, source, env: f"Generating manifest {target[0]}", @@ -75,6 +78,7 @@ def generate(env: Environment): addon_info=env["addon_info"], brailleTables=env["brailleTables"], symbolDictionaries=env["symbolDictionaries"], + speechDictionaries=env["speechDictionaries"], ) and None, lambda target, source, env: f"Generating translated manifest {target[0]}", diff --git a/site_scons/site_tools/NVDATool/manifests.py b/site_scons/site_tools/NVDATool/manifests.py index a55785e..7723b0b 100644 --- a/site_scons/site_tools/NVDATool/manifests.py +++ b/site_scons/site_tools/NVDATool/manifests.py @@ -2,7 +2,7 @@ import gettext from functools import partial -from .typings import AddonInfo, BrailleTables, SymbolDictionaries +from .typings import AddonInfo, BrailleTables, SymbolDictionaries, SpeechDictionaries from .utils import format_nested_section @@ -12,6 +12,7 @@ def generateManifest( addon_info: AddonInfo, brailleTables: BrailleTables, symbolDictionaries: SymbolDictionaries, + speechDictionaries: SpeechDictionaries, ): # Prepare the root manifest section with codecs.open(source, "r", "utf-8") as f: @@ -26,6 +27,10 @@ def generateManifest( if symbolDictionaries: manifest += format_nested_section("symbolDictionaries", symbolDictionaries) + # Custom speech pronunciation dictionaries + if speechDictionaries: + manifest += format_nested_section("speechDictionaries", speechDictionaries) + with codecs.open(dest, "w", "utf-8") as f: f.write(manifest) @@ -38,6 +43,7 @@ def generateTranslatedManifest( addon_info: AddonInfo, brailleTables: BrailleTables, symbolDictionaries: SymbolDictionaries, + speechDictionaries: SpeechDictionaries, ): with open(mo, "rb") as f: _ = gettext.GNUTranslations(f).gettext @@ -63,5 +69,9 @@ def generateTranslatedManifest( if symbolDictionaries: manifest += _format_section_only_with_displayName("symbolDictionaries", symbolDictionaries) + # Custom speech pronunciation dictionaries + if speechDictionaries: + manifest += _format_section_only_with_displayName("speechDictionaries", speechDictionaries) + with codecs.open(dest, "w", "utf-8") as f: f.write(manifest) diff --git a/site_scons/site_tools/NVDATool/typings.py b/site_scons/site_tools/NVDATool/typings.py index 650a759..0375538 100644 --- a/site_scons/site_tools/NVDATool/typings.py +++ b/site_scons/site_tools/NVDATool/typings.py @@ -30,8 +30,14 @@ class SymbolDictionaryAttributes(TypedDict): mandatory: bool +class SpeechDictionaryAttributes(TypedDict): + displayName: str + mandatory: bool + + BrailleTables = dict[str, BrailleTableAttributes] SymbolDictionaries = dict[str, SymbolDictionaryAttributes] +SpeechDictionaries = dict[str, SpeechDictionaryAttributes] class Strable(Protocol): diff --git a/uv.lock b/uv.lock index e0def29..7e17b67 100644 --- a/uv.lock +++ b/uv.lock @@ -15,7 +15,6 @@ dependencies = [ { name = "nh3" }, { name = "pre-commit" }, { name = "pyright", extra = ["nodejs"] }, - { name = "requests" }, { name = "ruff" }, { name = "scons" }, { name = "uv" }, @@ -24,7 +23,7 @@ dependencies = [ [package.metadata] requires-dist = [ { name = "crowdin-api-client", specifier = "==1.24.1" }, - { name = "lxml", specifier = "==6.0.2" }, + { name = "lxml", specifier = "==6.1.0" }, { name = "markdown", specifier = "==3.10" }, { name = "markdown-link-attr-modifier", specifier = "==0.2.1" }, { name = "mdx-gh-links", specifier = "==0.4" }, @@ -32,19 +31,18 @@ requires-dist = [ { name = "nh3", specifier = "==0.3.2" }, { name = "pre-commit", specifier = "==4.2.0" }, { name = "pyright", extras = ["nodejs"], specifier = "==1.1.407" }, - { name = "requests", specifier = "==2.32.5" }, { name = "ruff", specifier = "==0.14.5" }, { name = "scons", specifier = "==4.10.1" }, - { name = "uv", specifier = "==0.9.11" }, + { name = "uv", specifier = "==0.11.6" }, ] [[package]] name = "certifi" -version = "2025.11.12" +version = "2026.4.22" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a2/8c/58f469717fa48465e4a50c014a0400602d3c437d7c0c468e17ada824da3a/certifi-2025.11.12.tar.gz", hash = "sha256:d8ab5478f2ecd78af242878415affce761ca6bc54a22a27e026d7c25357c3316", size = 160538, upload-time = "2025-11-12T02:54:51.517Z" } +sdist = { url = "https://files.pythonhosted.org/packages/25/ee/6caf7a40c36a1220410afe15a1cc64993a1f864871f698c0f93acb72842a/certifi-2026.4.22.tar.gz", hash = "sha256:8d455352a37b71bf76a79caa83a3d6c25afee4a385d632127b6afb3963f1c580", size = 137077, upload-time = "2026-04-22T11:26:11.191Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/70/7d/9bc192684cea499815ff478dfcdc13835ddf401365057044fb721ec6bddb/certifi-2025.11.12-py3-none-any.whl", hash = "sha256:97de8790030bbd5c2d96b7ec782fc2f7820ef8dba6db909ccf95449f2d062d4b", size = 159438, upload-time = "2025-11-12T02:54:49.735Z" }, + { url = "https://files.pythonhosted.org/packages/22/30/7cd8fdcdfbc5b869528b079bfb76dcdf6056b1a2097a662e5e8c04f42965/certifi-2026.4.22-py3-none-any.whl", hash = "sha256:3cb2210c8f88ba2318d29b0388d1023c8492ff72ecdde4ebdaddbb13a31b1c4a", size = 135707, upload-time = "2026-04-22T11:26:09.372Z" }, ] [[package]] @@ -58,27 +56,27 @@ wheels = [ [[package]] name = "charset-normalizer" -version = "3.4.4" +version = "3.4.7" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/13/69/33ddede1939fdd074bce5434295f38fae7136463422fe4fd3e0e89b98062/charset_normalizer-3.4.4.tar.gz", hash = "sha256:94537985111c35f28720e43603b8e7b43a6ecfb2ce1d3058bbe955b73404e21a", size = 129418, upload-time = "2025-10-14T04:42:32.879Z" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/a1/67fe25fac3c7642725500a3f6cfe5821ad557c3abb11c9d20d12c7008d3e/charset_normalizer-3.4.7.tar.gz", hash = "sha256:ae89db9e5f98a11a4bf50407d4363e7b09b31e55bc117b4f7d80aab97ba009e5", size = 144271, upload-time = "2026-04-02T09:28:39.342Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/97/45/4b3a1239bbacd321068ea6e7ac28875b03ab8bc0aa0966452db17cd36714/charset_normalizer-3.4.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:e1f185f86a6f3403aa2420e815904c67b2f9ebc443f045edd0de921108345794", size = 208091, upload-time = "2025-10-14T04:41:13.346Z" }, - { url = "https://files.pythonhosted.org/packages/7d/62/73a6d7450829655a35bb88a88fca7d736f9882a27eacdca2c6d505b57e2e/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6b39f987ae8ccdf0d2642338faf2abb1862340facc796048b604ef14919e55ed", size = 147936, upload-time = "2025-10-14T04:41:14.461Z" }, - { url = "https://files.pythonhosted.org/packages/89/c5/adb8c8b3d6625bef6d88b251bbb0d95f8205831b987631ab0c8bb5d937c2/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl", hash = "sha256:3162d5d8ce1bb98dd51af660f2121c55d0fa541b46dff7bb9b9f86ea1d87de72", size = 144180, upload-time = "2025-10-14T04:41:15.588Z" }, - { url = "https://files.pythonhosted.org/packages/91/ed/9706e4070682d1cc219050b6048bfd293ccf67b3d4f5a4f39207453d4b99/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:81d5eb2a312700f4ecaa977a8235b634ce853200e828fbadf3a9c50bab278328", size = 161346, upload-time = "2025-10-14T04:41:16.738Z" }, - { url = "https://files.pythonhosted.org/packages/d5/0d/031f0d95e4972901a2f6f09ef055751805ff541511dc1252ba3ca1f80cf5/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:5bd2293095d766545ec1a8f612559f6b40abc0eb18bb2f5d1171872d34036ede", size = 158874, upload-time = "2025-10-14T04:41:17.923Z" }, - { url = "https://files.pythonhosted.org/packages/f5/83/6ab5883f57c9c801ce5e5677242328aa45592be8a00644310a008d04f922/charset_normalizer-3.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a8a8b89589086a25749f471e6a900d3f662d1d3b6e2e59dcecf787b1cc3a1894", size = 153076, upload-time = "2025-10-14T04:41:19.106Z" }, - { url = "https://files.pythonhosted.org/packages/75/1e/5ff781ddf5260e387d6419959ee89ef13878229732732ee73cdae01800f2/charset_normalizer-3.4.4-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:bc7637e2f80d8530ee4a78e878bce464f70087ce73cf7c1caf142416923b98f1", size = 150601, upload-time = "2025-10-14T04:41:20.245Z" }, - { url = "https://files.pythonhosted.org/packages/d7/57/71be810965493d3510a6ca79b90c19e48696fb1ff964da319334b12677f0/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f8bf04158c6b607d747e93949aa60618b61312fe647a6369f88ce2ff16043490", size = 150376, upload-time = "2025-10-14T04:41:21.398Z" }, - { url = "https://files.pythonhosted.org/packages/e5/d5/c3d057a78c181d007014feb7e9f2e65905a6c4ef182c0ddf0de2924edd65/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:554af85e960429cf30784dd47447d5125aaa3b99a6f0683589dbd27e2f45da44", size = 144825, upload-time = "2025-10-14T04:41:22.583Z" }, - { url = "https://files.pythonhosted.org/packages/e6/8c/d0406294828d4976f275ffbe66f00266c4b3136b7506941d87c00cab5272/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:74018750915ee7ad843a774364e13a3db91682f26142baddf775342c3f5b1133", size = 162583, upload-time = "2025-10-14T04:41:23.754Z" }, - { url = "https://files.pythonhosted.org/packages/d7/24/e2aa1f18c8f15c4c0e932d9287b8609dd30ad56dbe41d926bd846e22fb8d/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:c0463276121fdee9c49b98908b3a89c39be45d86d1dbaa22957e38f6321d4ce3", size = 150366, upload-time = "2025-10-14T04:41:25.27Z" }, - { url = "https://files.pythonhosted.org/packages/e4/5b/1e6160c7739aad1e2df054300cc618b06bf784a7a164b0f238360721ab86/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:362d61fd13843997c1c446760ef36f240cf81d3ebf74ac62652aebaf7838561e", size = 160300, upload-time = "2025-10-14T04:41:26.725Z" }, - { url = "https://files.pythonhosted.org/packages/7a/10/f882167cd207fbdd743e55534d5d9620e095089d176d55cb22d5322f2afd/charset_normalizer-3.4.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9a26f18905b8dd5d685d6d07b0cdf98a79f3c7a918906af7cc143ea2e164c8bc", size = 154465, upload-time = "2025-10-14T04:41:28.322Z" }, - { url = "https://files.pythonhosted.org/packages/89/66/c7a9e1b7429be72123441bfdbaf2bc13faab3f90b933f664db506dea5915/charset_normalizer-3.4.4-cp313-cp313-win32.whl", hash = "sha256:9b35f4c90079ff2e2edc5b26c0c77925e5d2d255c42c74fdb70fb49b172726ac", size = 99404, upload-time = "2025-10-14T04:41:29.95Z" }, - { url = "https://files.pythonhosted.org/packages/c4/26/b9924fa27db384bdcd97ab83b4f0a8058d96ad9626ead570674d5e737d90/charset_normalizer-3.4.4-cp313-cp313-win_amd64.whl", hash = "sha256:b435cba5f4f750aa6c0a0d92c541fb79f69a387c91e61f1795227e4ed9cece14", size = 107092, upload-time = "2025-10-14T04:41:31.188Z" }, - { url = "https://files.pythonhosted.org/packages/af/8f/3ed4bfa0c0c72a7ca17f0380cd9e4dd842b09f664e780c13cff1dcf2ef1b/charset_normalizer-3.4.4-cp313-cp313-win_arm64.whl", hash = "sha256:542d2cee80be6f80247095cc36c418f7bddd14f4a6de45af91dfad36d817bba2", size = 100408, upload-time = "2025-10-14T04:41:32.624Z" }, - { url = "https://files.pythonhosted.org/packages/0a/4c/925909008ed5a988ccbb72dcc897407e5d6d3bd72410d69e051fc0c14647/charset_normalizer-3.4.4-py3-none-any.whl", hash = "sha256:7a32c560861a02ff789ad905a2fe94e3f840803362c84fecf1851cb4cf3dc37f", size = 53402, upload-time = "2025-10-14T04:42:31.76Z" }, + { url = "https://files.pythonhosted.org/packages/c1/3b/66777e39d3ae1ddc77ee606be4ec6d8cbd4c801f65e5a1b6f2b11b8346dd/charset_normalizer-3.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:f496c9c3cc02230093d8330875c4c3cdfc3b73612a5fd921c65d39cbcef08063", size = 309627, upload-time = "2026-04-02T09:26:45.198Z" }, + { url = "https://files.pythonhosted.org/packages/2e/4e/b7f84e617b4854ade48a1b7915c8ccfadeba444d2a18c291f696e37f0d3b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0ea948db76d31190bf08bd371623927ee1339d5f2a0b4b1b4a4439a65298703c", size = 207008, upload-time = "2026-04-02T09:26:46.824Z" }, + { url = "https://files.pythonhosted.org/packages/c4/bb/ec73c0257c9e11b268f018f068f5d00aa0ef8c8b09f7753ebd5f2880e248/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a277ab8928b9f299723bc1a2dabb1265911b1a76341f90a510368ca44ad9ab66", size = 228303, upload-time = "2026-04-02T09:26:48.397Z" }, + { url = "https://files.pythonhosted.org/packages/85/fb/32d1f5033484494619f701e719429c69b766bfc4dbc61aa9e9c8c166528b/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:3bec022aec2c514d9cf199522a802bd007cd588ab17ab2525f20f9c34d067c18", size = 224282, upload-time = "2026-04-02T09:26:49.684Z" }, + { url = "https://files.pythonhosted.org/packages/fa/07/330e3a0dda4c404d6da83b327270906e9654a24f6c546dc886a0eb0ffb23/charset_normalizer-3.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e044c39e41b92c845bc815e5ae4230804e8e7bc29e399b0437d64222d92809dd", size = 215595, upload-time = "2026-04-02T09:26:50.915Z" }, + { url = "https://files.pythonhosted.org/packages/e3/7c/fc890655786e423f02556e0216d4b8c6bcb6bdfa890160dc66bf52dee468/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:f495a1652cf3fbab2eb0639776dad966c2fb874d79d87ca07f9d5f059b8bd215", size = 201986, upload-time = "2026-04-02T09:26:52.197Z" }, + { url = "https://files.pythonhosted.org/packages/d8/97/bfb18b3db2aed3b90cf54dc292ad79fdd5ad65c4eae454099475cbeadd0d/charset_normalizer-3.4.7-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:e712b419df8ba5e42b226c510472b37bd57b38e897d3eca5e8cfd410a29fa859", size = 211711, upload-time = "2026-04-02T09:26:53.49Z" }, + { url = "https://files.pythonhosted.org/packages/6f/a5/a581c13798546a7fd557c82614a5c65a13df2157e9ad6373166d2a3e645d/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:7804338df6fcc08105c7745f1502ba68d900f45fd770d5bdd5288ddccb8a42d8", size = 210036, upload-time = "2026-04-02T09:26:54.975Z" }, + { url = "https://files.pythonhosted.org/packages/8c/bf/b3ab5bcb478e4193d517644b0fb2bf5497fbceeaa7a1bc0f4d5b50953861/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:481551899c856c704d58119b5025793fa6730adda3571971af568f66d2424bb5", size = 202998, upload-time = "2026-04-02T09:26:56.303Z" }, + { url = "https://files.pythonhosted.org/packages/e7/4e/23efd79b65d314fa320ec6017b4b5834d5c12a58ba4610aa353af2e2f577/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:f59099f9b66f0d7145115e6f80dd8b1d847176df89b234a5a6b3f00437aa0832", size = 230056, upload-time = "2026-04-02T09:26:57.554Z" }, + { url = "https://files.pythonhosted.org/packages/b9/9f/1e1941bc3f0e01df116e68dc37a55c4d249df5e6fa77f008841aef68264f/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:f59ad4c0e8f6bba240a9bb85504faa1ab438237199d4cce5f622761507b8f6a6", size = 211537, upload-time = "2026-04-02T09:26:58.843Z" }, + { url = "https://files.pythonhosted.org/packages/80/0f/088cbb3020d44428964a6c97fe1edfb1b9550396bf6d278330281e8b709c/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:3dedcc22d73ec993f42055eff4fcfed9318d1eeb9a6606c55892a26964964e48", size = 226176, upload-time = "2026-04-02T09:27:00.437Z" }, + { url = "https://files.pythonhosted.org/packages/6a/9f/130394f9bbe06f4f63e22641d32fc9b202b7e251c9aef4db044324dac493/charset_normalizer-3.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:64f02c6841d7d83f832cd97ccf8eb8a906d06eb95d5276069175c696b024b60a", size = 217723, upload-time = "2026-04-02T09:27:02.021Z" }, + { url = "https://files.pythonhosted.org/packages/73/55/c469897448a06e49f8fa03f6caae97074fde823f432a98f979cc42b90e69/charset_normalizer-3.4.7-cp313-cp313-win32.whl", hash = "sha256:4042d5c8f957e15221d423ba781e85d553722fc4113f523f2feb7b188cc34c5e", size = 148085, upload-time = "2026-04-02T09:27:03.192Z" }, + { url = "https://files.pythonhosted.org/packages/5d/78/1b74c5bbb3f99b77a1715c91b3e0b5bdb6fe302d95ace4f5b1bec37b0167/charset_normalizer-3.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:3946fa46a0cf3e4c8cb1cc52f56bb536310d34f25f01ca9b6c16afa767dab110", size = 158819, upload-time = "2026-04-02T09:27:04.454Z" }, + { url = "https://files.pythonhosted.org/packages/68/86/46bd42279d323deb8687c4a5a811fd548cb7d1de10cf6535d099877a9a9f/charset_normalizer-3.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:80d04837f55fc81da168b98de4f4b797ef007fc8a79ab71c6ec9bc4dd662b15b", size = 147915, upload-time = "2026-04-02T09:27:05.971Z" }, + { url = "https://files.pythonhosted.org/packages/db/8f/61959034484a4a7c527811f4721e75d02d653a35afb0b6054474d8185d4c/charset_normalizer-3.4.7-py3-none-any.whl", hash = "sha256:3dce51d0f5e7951f8bb4900c257dad282f49190fdbebecd4ba99bcc41fef404d", size = 61958, upload-time = "2026-04-02T09:28:37.794Z" }, ] [[package]] @@ -117,55 +115,55 @@ wheels = [ [[package]] name = "filelock" -version = "3.20.1" +version = "3.29.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/a7/23/ce7a1126827cedeb958fc043d61745754464eb56c5937c35bbf2b8e26f34/filelock-3.20.1.tar.gz", hash = "sha256:b8360948b351b80f420878d8516519a2204b07aefcdcfd24912a5d33127f188c", size = 19476, upload-time = "2025-12-15T23:54:28.027Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/fe/997687a931ab51049acce6fa1f23e8f01216374ea81374ddee763c493db5/filelock-3.29.0.tar.gz", hash = "sha256:69974355e960702e789734cb4871f884ea6fe50bd8404051a3530bc07809cf90", size = 57571, upload-time = "2026-04-19T15:39:10.068Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/e3/7f/a1a97644e39e7316d850784c642093c99df1290a460df4ede27659056834/filelock-3.20.1-py3-none-any.whl", hash = "sha256:15d9e9a67306188a44baa72f569d2bfd803076269365fdea0934385da4dc361a", size = 16666, upload-time = "2025-12-15T23:54:26.874Z" }, + { url = "https://files.pythonhosted.org/packages/81/47/dd9a212ef6e343a6857485ffe25bba537304f1913bdbed446a23f7f592e1/filelock-3.29.0-py3-none-any.whl", hash = "sha256:96f5f6344709aa1572bbf631c640e4ebeeb519e08da902c39a001882f30ac258", size = 39812, upload-time = "2026-04-19T15:39:08.752Z" }, ] [[package]] name = "identify" -version = "2.6.15" +version = "2.6.19" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/ff/e7/685de97986c916a6d93b3876139e00eef26ad5bbbd61925d670ae8013449/identify-2.6.15.tar.gz", hash = "sha256:e4f4864b96c6557ef2a1e1c951771838f4edc9df3a72ec7118b338801b11c7bf", size = 99311, upload-time = "2025-10-02T17:43:40.631Z" } +sdist = { url = "https://files.pythonhosted.org/packages/52/63/51723b5f116cc04b061cb6f5a561790abf249d25931d515cd375e063e0f4/identify-2.6.19.tar.gz", hash = "sha256:6be5020c38fcb07da56c53733538a3081ea5aa70d36a156f83044bfbf9173842", size = 99567, upload-time = "2026-04-17T18:39:50.265Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0f/1c/e5fd8f973d4f375adb21565739498e2e9a1e54c858a97b9a8ccfdc81da9b/identify-2.6.15-py2.py3-none-any.whl", hash = "sha256:1181ef7608e00704db228516541eb83a88a9f94433a8c80bb9b5bd54b1d81757", size = 99183, upload-time = "2025-10-02T17:43:39.137Z" }, + { url = "https://files.pythonhosted.org/packages/94/84/d9273cd09688070a6523c4aee4663a8538721b2b755c4962aafae0011e72/identify-2.6.19-py2.py3-none-any.whl", hash = "sha256:20e6a87f786f768c092a721ad107fc9df0eb89347be9396cadf3f4abbd1fb78a", size = 99397, upload-time = "2026-04-17T18:39:49.221Z" }, ] [[package]] name = "idna" -version = "3.11" +version = "3.13" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/0703ccc57f3a7233505399edb88de3cbd678da106337b9fcde432b65ed60/idna-3.11.tar.gz", hash = "sha256:795dafcc9c04ed0c1fb032c2aa73654d8e8c5023a7df64a53f39190ada629902", size = 194582, upload-time = "2025-10-12T14:55:20.501Z" } +sdist = { url = "https://files.pythonhosted.org/packages/ce/cc/762dfb036166873f0059f3b7de4565e1b5bc3d6f28a414c13da27e442f99/idna-3.13.tar.gz", hash = "sha256:585ea8fe5d69b9181ec1afba340451fba6ba764af97026f92a91d4eef164a242", size = 194210, upload-time = "2026-04-22T16:42:42.314Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/0e/61/66938bbb5fc52dbdf84594873d5b51fb1f7c7794e9c0f5bd885f30bc507b/idna-3.11-py3-none-any.whl", hash = "sha256:771a87f49d9defaf64091e6e6fe9c18d4833f140bd19464795bc32d966ca37ea", size = 71008, upload-time = "2025-10-12T14:55:18.883Z" }, + { url = "https://files.pythonhosted.org/packages/5d/13/ad7d7ca3808a898b4612b6fe93cde56b53f3034dcde235acb1f0e1df24c6/idna-3.13-py3-none-any.whl", hash = "sha256:892ea0cde124a99ce773decba204c5552b69c3c67ffd5f232eb7696135bc8bb3", size = 68629, upload-time = "2026-04-22T16:42:40.909Z" }, ] [[package]] name = "lxml" -version = "6.0.2" +version = "6.1.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/aa/88/262177de60548e5a2bfc46ad28232c9e9cbde697bd94132aeb80364675cb/lxml-6.0.2.tar.gz", hash = "sha256:cd79f3367bd74b317dda655dc8fcfa304d9eb6e4fb06b7168c5cf27f96e0cd62", size = 4073426, upload-time = "2025-09-22T04:04:59.287Z" } +sdist = { url = "https://files.pythonhosted.org/packages/28/30/9abc9e34c657c33834eaf6cd02124c61bdf5944d802aa48e69be8da3585d/lxml-6.1.0.tar.gz", hash = "sha256:bfd57d8008c4965709a919c3e9a98f76c2c7cb319086b3d26858250620023b13", size = 4197006, upload-time = "2026-04-18T04:32:51.613Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/53/fd/4e8f0540608977aea078bf6d79f128e0e2c2bba8af1acf775c30baa70460/lxml-6.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:9b33d21594afab46f37ae58dfadd06636f154923c4e8a4d754b0127554eb2e77", size = 8648494, upload-time = "2025-09-22T04:01:54.242Z" }, - { url = "https://files.pythonhosted.org/packages/5d/f4/2a94a3d3dfd6c6b433501b8d470a1960a20ecce93245cf2db1706adf6c19/lxml-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:6c8963287d7a4c5c9a432ff487c52e9c5618667179c18a204bdedb27310f022f", size = 4661146, upload-time = "2025-09-22T04:01:56.282Z" }, - { url = "https://files.pythonhosted.org/packages/25/2e/4efa677fa6b322013035d38016f6ae859d06cac67437ca7dc708a6af7028/lxml-6.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:1941354d92699fb5ffe6ed7b32f9649e43c2feb4b97205f75866f7d21aa91452", size = 4946932, upload-time = "2025-09-22T04:01:58.989Z" }, - { url = "https://files.pythonhosted.org/packages/ce/0f/526e78a6d38d109fdbaa5049c62e1d32fdd70c75fb61c4eadf3045d3d124/lxml-6.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bb2f6ca0ae2d983ded09357b84af659c954722bbf04dea98030064996d156048", size = 5100060, upload-time = "2025-09-22T04:02:00.812Z" }, - { url = "https://files.pythonhosted.org/packages/81/76/99de58d81fa702cc0ea7edae4f4640416c2062813a00ff24bd70ac1d9c9b/lxml-6.0.2-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:eb2a12d704f180a902d7fa778c6d71f36ceb7b0d317f34cdc76a5d05aa1dd1df", size = 5019000, upload-time = "2025-09-22T04:02:02.671Z" }, - { url = "https://files.pythonhosted.org/packages/b5/35/9e57d25482bc9a9882cb0037fdb9cc18f4b79d85df94fa9d2a89562f1d25/lxml-6.0.2-cp313-cp313-manylinux_2_26_i686.manylinux_2_28_i686.whl", hash = "sha256:6ec0e3f745021bfed19c456647f0298d60a24c9ff86d9d051f52b509663feeb1", size = 5348496, upload-time = "2025-09-22T04:02:04.904Z" }, - { url = "https://files.pythonhosted.org/packages/a6/8e/cb99bd0b83ccc3e8f0f528e9aa1f7a9965dfec08c617070c5db8d63a87ce/lxml-6.0.2-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:846ae9a12d54e368933b9759052d6206a9e8b250291109c48e350c1f1f49d916", size = 5643779, upload-time = "2025-09-22T04:02:06.689Z" }, - { url = "https://files.pythonhosted.org/packages/d0/34/9e591954939276bb679b73773836c6684c22e56d05980e31d52a9a8deb18/lxml-6.0.2-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ef9266d2aa545d7374938fb5c484531ef5a2ec7f2d573e62f8ce722c735685fd", size = 5244072, upload-time = "2025-09-22T04:02:08.587Z" }, - { url = "https://files.pythonhosted.org/packages/8d/27/b29ff065f9aaca443ee377aff699714fcbffb371b4fce5ac4ca759e436d5/lxml-6.0.2-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:4077b7c79f31755df33b795dc12119cb557a0106bfdab0d2c2d97bd3cf3dffa6", size = 4718675, upload-time = "2025-09-22T04:02:10.783Z" }, - { url = "https://files.pythonhosted.org/packages/2b/9f/f756f9c2cd27caa1a6ef8c32ae47aadea697f5c2c6d07b0dae133c244fbe/lxml-6.0.2-cp313-cp313-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a7c5d5e5f1081955358533be077166ee97ed2571d6a66bdba6ec2f609a715d1a", size = 5255171, upload-time = "2025-09-22T04:02:12.631Z" }, - { url = "https://files.pythonhosted.org/packages/61/46/bb85ea42d2cb1bd8395484fd72f38e3389611aa496ac7772da9205bbda0e/lxml-6.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:8f8d0cbd0674ee89863a523e6994ac25fd5be9c8486acfc3e5ccea679bad2679", size = 5057175, upload-time = "2025-09-22T04:02:14.718Z" }, - { url = "https://files.pythonhosted.org/packages/95/0c/443fc476dcc8e41577f0af70458c50fe299a97bb6b7505bb1ae09aa7f9ac/lxml-6.0.2-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:2cbcbf6d6e924c28f04a43f3b6f6e272312a090f269eff68a2982e13e5d57659", size = 4785688, upload-time = "2025-09-22T04:02:16.957Z" }, - { url = "https://files.pythonhosted.org/packages/48/78/6ef0b359d45bb9697bc5a626e1992fa5d27aa3f8004b137b2314793b50a0/lxml-6.0.2-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:dfb874cfa53340009af6bdd7e54ebc0d21012a60a4e65d927c2e477112e63484", size = 5660655, upload-time = "2025-09-22T04:02:18.815Z" }, - { url = "https://files.pythonhosted.org/packages/ff/ea/e1d33808f386bc1339d08c0dcada6e4712d4ed8e93fcad5f057070b7988a/lxml-6.0.2-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:fb8dae0b6b8b7f9e96c26fdd8121522ce5de9bb5538010870bd538683d30e9a2", size = 5247695, upload-time = "2025-09-22T04:02:20.593Z" }, - { url = "https://files.pythonhosted.org/packages/4f/47/eba75dfd8183673725255247a603b4ad606f4ae657b60c6c145b381697da/lxml-6.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:358d9adae670b63e95bc59747c72f4dc97c9ec58881d4627fe0120da0f90d314", size = 5269841, upload-time = "2025-09-22T04:02:22.489Z" }, - { url = "https://files.pythonhosted.org/packages/76/04/5c5e2b8577bc936e219becb2e98cdb1aca14a4921a12995b9d0c523502ae/lxml-6.0.2-cp313-cp313-win32.whl", hash = "sha256:e8cd2415f372e7e5a789d743d133ae474290a90b9023197fd78f32e2dc6873e2", size = 3610700, upload-time = "2025-09-22T04:02:24.465Z" }, - { url = "https://files.pythonhosted.org/packages/fe/0a/4643ccc6bb8b143e9f9640aa54e38255f9d3b45feb2cbe7ae2ca47e8782e/lxml-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:b30d46379644fbfc3ab81f8f82ae4de55179414651f110a1514f0b1f8f6cb2d7", size = 4010347, upload-time = "2025-09-22T04:02:26.286Z" }, - { url = "https://files.pythonhosted.org/packages/31/ef/dcf1d29c3f530577f61e5fe2f1bd72929acf779953668a8a47a479ae6f26/lxml-6.0.2-cp313-cp313-win_arm64.whl", hash = "sha256:13dcecc9946dca97b11b7c40d29fba63b55ab4170d3c0cf8c0c164343b9bfdcf", size = 3671248, upload-time = "2025-09-22T04:02:27.918Z" }, + { url = "https://files.pythonhosted.org/packages/08/03/69347590f1cf4a6d5a4944bb6099e6d37f334784f16062234e1f892fdb1d/lxml-6.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a0092f2b107b69601adf562a57c956fbb596e05e3e6651cabd3054113b007e45", size = 8559689, upload-time = "2026-04-18T04:31:57.785Z" }, + { url = "https://files.pythonhosted.org/packages/3f/58/25e00bb40b185c974cfe156c110474d9a8a8390d5f7c92a4e328189bb60e/lxml-6.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:fc7140d7a7386e6b545d41b7358f4d02b656d4053f5fa6859f92f4b9c2572c4d", size = 4617892, upload-time = "2026-04-18T04:32:01.78Z" }, + { url = "https://files.pythonhosted.org/packages/f5/54/92ad98a94ac318dc4f97aaac22ff8d1b94212b2ae8af5b6e9b354bf825f7/lxml-6.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:419c58fc92cc3a2c3fa5f78c63dbf5da70c1fa9c1b25f25727ecee89a96c7de2", size = 4923489, upload-time = "2026-04-18T04:33:31.401Z" }, + { url = "https://files.pythonhosted.org/packages/15/3b/a20aecfab42bdf4f9b390590d345857ad3ffd7c51988d1c89c53a0c73faf/lxml-6.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:37fabd1452852636cf38ecdcc9dd5ca4bba7a35d6c53fa09725deeb894a87491", size = 5082162, upload-time = "2026-04-18T04:33:34.262Z" }, + { url = "https://files.pythonhosted.org/packages/45/26/2cdb3d281ac1bd175603e290cbe4bad6eff127c0f8de90bafd6f8548f0fd/lxml-6.1.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a2853c8b2170cc6cd54a6b4d50d2c1a8a7aeca201f23804b4898525c7a152cfc", size = 4993247, upload-time = "2026-04-18T04:33:36.674Z" }, + { url = "https://files.pythonhosted.org/packages/f6/05/d735aef963740022a08185c84821f689fc903acb3d50326e6b1e9886cc22/lxml-6.1.0-cp313-cp313-manylinux_2_26_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:8e369cbd690e788c8d15e56222d91a09c6a417f49cbc543040cba0fe2e25a79e", size = 5613042, upload-time = "2026-04-18T04:33:39.205Z" }, + { url = "https://files.pythonhosted.org/packages/ee/b8/ead7c10efff731738c72e59ed6eb5791854879fbed7ae98781a12006263a/lxml-6.1.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e69aa6805905807186eb00e66c6d97a935c928275182eb02ee40ba00da9623b2", size = 5228304, upload-time = "2026-04-18T04:33:41.647Z" }, + { url = "https://files.pythonhosted.org/packages/6b/10/e9842d2ec322ea65f0a7270aa0315a53abed06058b88ef1b027f620e7a5f/lxml-6.1.0-cp313-cp313-manylinux_2_28_i686.whl", hash = "sha256:4bd1bdb8a9e0e2dd229de19b5f8aebac80e916921b4b2c6ef8a52bc131d0c1f9", size = 5341578, upload-time = "2026-04-18T04:33:44.596Z" }, + { url = "https://files.pythonhosted.org/packages/89/54/40d9403d7c2775fa7301d3ddd3464689bfe9ba71acc17dfff777071b4fdc/lxml-6.1.0-cp313-cp313-manylinux_2_31_armv7l.whl", hash = "sha256:cbd7b79cdcb4986ad78a2662625882747f09db5e4cd7b2ae178a88c9c51b3dfe", size = 4700209, upload-time = "2026-04-18T04:33:47.552Z" }, + { url = "https://files.pythonhosted.org/packages/85/b2/bbdcc2cf45dfc7dfffef4fd97e5c47b15919b6a365247d95d6f684ef5e82/lxml-6.1.0-cp313-cp313-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:43e4d297f11080ec9d64a4b1ad7ac02b4484c9f0e2179d9c4ef78e886e747b88", size = 5232365, upload-time = "2026-04-18T04:33:50.249Z" }, + { url = "https://files.pythonhosted.org/packages/48/5a/b06875665e53aaba7127611a7bed3b7b9658e20b22bc2dd217a0b7ab0091/lxml-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cc16682cc987a3da00aa56a3aa3075b08edb10d9b1e476938cfdbee8f3b67181", size = 5043654, upload-time = "2026-04-18T04:33:52.71Z" }, + { url = "https://files.pythonhosted.org/packages/e9/9c/e71a069d09641c1a7abeb30e693f828c7c90a41cbe3d650b2d734d876f85/lxml-6.1.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:d6d8efe71429635f0559579092bb5e60560d7b9115ee38c4adbea35632e7fa24", size = 4769326, upload-time = "2026-04-18T04:33:55.244Z" }, + { url = "https://files.pythonhosted.org/packages/cc/06/7a9cd84b3d4ed79adf35f874750abb697dec0b4a81a836037b36e47c091a/lxml-6.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:7e39ab3a28af7784e206d8606ec0e4bcad0190f63a492bca95e94e5a4aef7f6e", size = 5635879, upload-time = "2026-04-18T04:33:58.509Z" }, + { url = "https://files.pythonhosted.org/packages/cc/f0/9d57916befc1e54c451712c7ee48e9e74e80ae4d03bdce49914e0aee42cd/lxml-6.1.0-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:9eb667bf50856c4a58145f8ca2d5e5be160191e79eb9e30855a476191b3c3495", size = 5224048, upload-time = "2026-04-18T04:34:00.943Z" }, + { url = "https://files.pythonhosted.org/packages/99/75/90c4eefda0c08c92221fe0753db2d6699a4c628f76ff4465ec20dea84cc1/lxml-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7f4a77d6f7edf9230cee3e1f7f6764722a41604ee5681844f18db9a81ea0ec33", size = 5250241, upload-time = "2026-04-18T04:34:03.365Z" }, + { url = "https://files.pythonhosted.org/packages/5e/73/16596f7e4e38fa33084b9ccbccc22a15f82a290a055126f2c1541236d2ff/lxml-6.1.0-cp313-cp313-win32.whl", hash = "sha256:28902146ffbe5222df411c5d19e5352490122e14447e98cd118907ee3fd6ee62", size = 3596938, upload-time = "2026-04-18T04:31:56.206Z" }, + { url = "https://files.pythonhosted.org/packages/8e/63/981401c5680c1eb30893f00a19641ac80db5d1e7086c62cb4b13ed813038/lxml-6.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:4a1503c56e4e2b38dc76f2f2da7bae69670c0f1933e27cfa34b2fa5876410b16", size = 3995728, upload-time = "2026-04-18T04:31:58.763Z" }, + { url = "https://files.pythonhosted.org/packages/e7/e8/c358a38ac3e541d16a1b527e4e9cb78c0419b0506a070ace11777e5e8404/lxml-6.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:e0af85773850417d994d019741239b901b22c6680206f46a34766926e466141d", size = 3658372, upload-time = "2026-04-18T04:32:03.629Z" }, ] [[package]] @@ -247,27 +245,27 @@ wheels = [ [[package]] name = "nodejs-wheel-binaries" -version = "24.12.0" +version = "24.15.0" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/b9/35/d806c2ca66072e36dc340ccdbeb2af7e4f1b5bcc33f1481f00ceed476708/nodejs_wheel_binaries-24.12.0.tar.gz", hash = "sha256:f1b50aa25375e264697dec04b232474906b997c2630c8f499f4caf3692938435", size = 8058, upload-time = "2025-12-11T21:12:26.856Z" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/70/a1e4f4d5986768ab90cc860b1cc3660fd2ded74ca175a900a5c29f839c7d/nodejs_wheel_binaries-24.15.0.tar.gz", hash = "sha256:b43f5c4f6e5768d8845b2ae4682eb703a19bf7aadc84187e2d903ed3a611c859", size = 8057, upload-time = "2026-04-19T15:48:16.899Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/c3/3b/9d6f044319cd5b1e98f07c41e2465b58cadc1c9c04a74c891578f3be6cb5/nodejs_wheel_binaries-24.12.0-py2.py3-none-macosx_13_0_arm64.whl", hash = "sha256:7564ddea0a87eff34e9b3ef71764cc2a476a8f09a5cccfddc4691148b0a47338", size = 55125859, upload-time = "2025-12-11T21:11:58.132Z" }, - { url = "https://files.pythonhosted.org/packages/48/a5/f5722bf15c014e2f476d7c76bce3d55c341d19122d8a5d86454db32a61a4/nodejs_wheel_binaries-24.12.0-py2.py3-none-macosx_13_0_x86_64.whl", hash = "sha256:8ff929c4669e64613ceb07f5bbd758d528c3563820c75d5de3249eb452c0c0ab", size = 55309035, upload-time = "2025-12-11T21:12:01.754Z" }, - { url = "https://files.pythonhosted.org/packages/a9/61/68d39a6f1b5df67805969fd2829ba7e80696c9af19537856ec912050a2be/nodejs_wheel_binaries-24.12.0-py2.py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:6ebacefa8891bc456ad3655e6bce0af7e20ba08662f79d9109986faeb703fd6f", size = 59661017, upload-time = "2025-12-11T21:12:05.268Z" }, - { url = "https://files.pythonhosted.org/packages/16/a1/31aad16f55a5e44ca7ea62d1367fc69f4b6e1dba67f58a0a41d0ed854540/nodejs_wheel_binaries-24.12.0-py2.py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:3292649a03682ccbfa47f7b04d3e4240e8c46ef04dc941b708f20e4e6a764f75", size = 60159770, upload-time = "2025-12-11T21:12:08.696Z" }, - { url = "https://files.pythonhosted.org/packages/c4/5e/b7c569aa1862690ca4d4daf3a64cafa1ea6ce667a9e3ae3918c56e127d9b/nodejs_wheel_binaries-24.12.0-py2.py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:7fb83df312955ea355ba7f8cbd7055c477249a131d3cb43b60e4aeb8f8c730b1", size = 61653561, upload-time = "2025-12-11T21:12:12.575Z" }, - { url = "https://files.pythonhosted.org/packages/71/87/567f58d7ba69ff0208be849b37be0f2c2e99c69e49334edd45ff44f00043/nodejs_wheel_binaries-24.12.0-py2.py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:2473c819448fedd7b036dde236b09f3c8bbf39fbbd0c1068790a0498800f498b", size = 62238331, upload-time = "2025-12-11T21:12:16.143Z" }, - { url = "https://files.pythonhosted.org/packages/6a/9d/c6492188ce8de90093c6755a4a63bb6b2b4efb17094cb4f9a9a49c73ed3b/nodejs_wheel_binaries-24.12.0-py2.py3-none-win_amd64.whl", hash = "sha256:2090d59f75a68079fabc9b86b14df8238b9aecb9577966dc142ce2a23a32e9bb", size = 41342076, upload-time = "2025-12-11T21:12:20.618Z" }, - { url = "https://files.pythonhosted.org/packages/df/af/cd3290a647df567645353feed451ef4feaf5844496ced69c4dcb84295ff4/nodejs_wheel_binaries-24.12.0-py2.py3-none-win_arm64.whl", hash = "sha256:d0c2273b667dd7e3f55e369c0085957b702144b1b04bfceb7ce2411e58333757", size = 39048104, upload-time = "2025-12-11T21:12:23.495Z" }, + { url = "https://files.pythonhosted.org/packages/85/66/54051d14853d6ab4fb85f8be9b042b530be653357fb9a19557498bc91ab7/nodejs_wheel_binaries-24.15.0-py2.py3-none-macosx_13_0_arm64.whl", hash = "sha256:a6232fa8b754220941f52388c8ead923f7c1c7fdf0ea0d98f657523bd9a81ef4", size = 55173485, upload-time = "2026-04-19T15:47:34.561Z" }, + { url = "https://files.pythonhosted.org/packages/ad/5f/66acada164da5ca10a0824db021aa7394ae18396c550cd9280e839a43126/nodejs_wheel_binaries-24.15.0-py2.py3-none-macosx_13_0_x86_64.whl", hash = "sha256:001a6b62c69d9109c1738163cca00608dd2722e8663af59300054ea02610972d", size = 55348100, upload-time = "2026-04-19T15:47:40.521Z" }, + { url = "https://files.pythonhosted.org/packages/0d/2d/0cbd5ff40c9bb030ca1735d8f8793bd74f08a4cbd49100a1d19313ea57ab/nodejs_wheel_binaries-24.15.0-py2.py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:0fbc48765e60ed0ff30d43898dbf5cadbadf2e5f1e7f204afc2b01493b7ebce6", size = 59668206, upload-time = "2026-04-19T15:47:46.848Z" }, + { url = "https://files.pythonhosted.org/packages/da/d5/91ac63951ec75927a486b83b8cafe650e360fa70ac01dc94adfb32b93b97/nodejs_wheel_binaries-24.15.0-py2.py3-none-manylinux_2_28_x86_64.whl", hash = "sha256:20ee0536809795da8a4942fc1ab4cbdebbcaaf29383eab67ba8874268fb00008", size = 60206736, upload-time = "2026-04-19T15:47:52.668Z" }, + { url = "https://files.pythonhosted.org/packages/db/72/dc22776974d928869c0c30d23ee98ed7df254243c2df68f09f5963e8e8b8/nodejs_wheel_binaries-24.15.0-py2.py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:1fade6c214285e72472ca40a631e98ff36559671cd5eefc8bf009471d67f04b4", size = 61720456, upload-time = "2026-04-19T15:47:58.325Z" }, + { url = "https://files.pythonhosted.org/packages/01/0a/34461b9050cb45ee371dccdefc622aef6351506ea2691b08fc761ca67150/nodejs_wheel_binaries-24.15.0-py2.py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:3984cb8d87766567aee67a49743227ab40ede6f47734ec990ff90e50b74e7740", size = 62326172, upload-time = "2026-04-19T15:48:04.094Z" }, + { url = "https://files.pythonhosted.org/packages/c9/17/09252bf35672dba926649d59dfe51443a0f6955ad13784e91131d5ec82a2/nodejs_wheel_binaries-24.15.0-py2.py3-none-win_amd64.whl", hash = "sha256:a437601956b532dcb3082046e6978e622733f90edc0932cbb9adb3bb97a16501", size = 41543461, upload-time = "2026-04-19T15:48:09.332Z" }, + { url = "https://files.pythonhosted.org/packages/0a/7e/b649777d148e1e0c2ce349156603cdb12f7ed99921b95d93717393650193/nodejs_wheel_binaries-24.15.0-py2.py3-none-win_arm64.whl", hash = "sha256:bdf4a431e08321a32efc604111c6f23941f87055d796a537e8c4110daecad23f", size = 39233248, upload-time = "2026-04-19T15:48:13.326Z" }, ] [[package]] name = "platformdirs" -version = "4.5.1" +version = "4.9.6" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/cf/86/0248f086a84f01b37aaec0fa567b397df1a119f73c16f6c7a9aac73ea309/platformdirs-4.5.1.tar.gz", hash = "sha256:61d5cdcc6065745cdd94f0f878977f8de9437be93de97c1c12f853c9c0cdcbda", size = 21715, upload-time = "2025-12-05T13:52:58.638Z" } +sdist = { url = "https://files.pythonhosted.org/packages/9f/4a/0883b8e3802965322523f0b200ecf33d31f10991d0401162f4b23c698b42/platformdirs-4.9.6.tar.gz", hash = "sha256:3bfa75b0ad0db84096ae777218481852c0ebc6c727b3168c1b9e0118e458cf0a", size = 29400, upload-time = "2026-04-09T00:04:10.812Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/cb/28/3bfe2fa5a7b9c46fe7e13c97bda14c895fb10fa2ebf1d0abb90e0cea7ee1/platformdirs-4.5.1-py3-none-any.whl", hash = "sha256:d03afa3963c806a9bed9d5125c8f4cb2fdaf74a55ab60e5d59b3fde758104d31", size = 18731, upload-time = "2025-12-05T13:52:56.823Z" }, + { url = "https://files.pythonhosted.org/packages/75/a6/a0a304dc33b49145b21f4808d763822111e67d1c3a32b524a1baf947b6e1/platformdirs-4.9.6-py3-none-any.whl", hash = "sha256:e61adb1d5e5cb3441b4b7710bea7e4c12250ca49439228cc1021c00dcfac0917", size = 21348, upload-time = "2026-04-09T00:04:09.463Z" }, ] [[package]] @@ -304,6 +302,19 @@ nodejs = [ { name = "nodejs-wheel-binaries" }, ] +[[package]] +name = "python-discovery" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "filelock" }, + { name = "platformdirs" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/de/ef/3bae0e537cfe91e8431efcba4434463d2c5a65f5a89edd47c6cf2f03c55f/python_discovery-1.2.2.tar.gz", hash = "sha256:876e9c57139eb757cb5878cbdd9ae5379e5d96266c99ef731119e04fffe533bb", size = 58872, upload-time = "2026-04-07T17:28:49.249Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/d8/db/795879cc3ddfe338599bddea6388cc5100b088db0a4caf6e6c1af1c27e04/python_discovery-1.2.2-py3-none-any.whl", hash = "sha256:e1ae95d9af875e78f15e19aed0c6137ab1bb49c200f21f5061786490c9585c7a", size = 31894, upload-time = "2026-04-07T17:28:48.09Z" }, +] + [[package]] name = "pyyaml" version = "6.0.3" @@ -324,7 +335,7 @@ wheels = [ [[package]] name = "requests" -version = "2.32.5" +version = "2.33.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "certifi" }, @@ -332,9 +343,9 @@ dependencies = [ { name = "idna" }, { name = "urllib3" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" } +sdist = { url = "https://files.pythonhosted.org/packages/34/64/8860370b167a9721e8956ae116825caff829224fbca0ca6e7bf8ddef8430/requests-2.33.0.tar.gz", hash = "sha256:c7ebc5e8b0f21837386ad0e1c8fe8b829fa5f544d8df3b2253bff14ef29d7652", size = 134232, upload-time = "2026-03-25T15:10:41.586Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" }, + { url = "https://files.pythonhosted.org/packages/56/5d/c814546c2333ceea4ba42262d8c4d55763003e767fa169adc693bd524478/requests-2.33.0-py3-none-any.whl", hash = "sha256:3324635456fa185245e24865e810cecec7b4caf933d7eb133dcde67d48cee69b", size = 65017, upload-time = "2026-03-25T15:10:40.382Z" }, ] [[package]] @@ -383,82 +394,81 @@ wheels = [ [[package]] name = "urllib3" -version = "2.6.2" +version = "2.6.3" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/1e/24/a2a2ed9addd907787d7aa0355ba36a6cadf1768b934c652ea78acbd59dcd/urllib3-2.6.2.tar.gz", hash = "sha256:016f9c98bb7e98085cb2b4b17b87d2c702975664e4f060c6532e64d1c1a5e797", size = 432930, upload-time = "2025-12-11T15:56:40.252Z" } +sdist = { url = "https://files.pythonhosted.org/packages/c7/24/5f1b3bdffd70275f6661c76461e25f024d5a38a46f04aaca912426a2b1d3/urllib3-2.6.3.tar.gz", hash = "sha256:1b62b6884944a57dbe321509ab94fd4d3b307075e0c2eae991ac71ee15ad38ed", size = 435556, upload-time = "2026-01-07T16:24:43.925Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/6d/b9/4095b668ea3678bf6a0af005527f39de12fb026516fb3df17495a733b7f8/urllib3-2.6.2-py3-none-any.whl", hash = "sha256:ec21cddfe7724fc7cb4ba4bea7aa8e2ef36f607a4bab81aa6ce42a13dc3f03dd", size = 131182, upload-time = "2025-12-11T15:56:38.584Z" }, + { url = "https://files.pythonhosted.org/packages/39/08/aaaad47bc4e9dc8c725e68f9d04865dbcb2052843ff09c97b08904852d84/urllib3-2.6.3-py3-none-any.whl", hash = "sha256:bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4", size = 131584, upload-time = "2026-01-07T16:24:42.685Z" }, ] [[package]] name = "uv" -version = "0.9.11" +version = "0.11.6" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/8a/08/3bf76403ea7c22feef634849137fab10b28ab5ba5bbf08a53390763d5448/uv-0.9.11.tar.gz", hash = "sha256:605a7a57f508aabd029fc0c5ef5c60a556f8c50d32e194f1a300a9f4e87f18d4", size = 3744387, upload-time = "2025-11-20T23:20:00.95Z" } +sdist = { url = "https://files.pythonhosted.org/packages/dd/f3/8aceeab67ea69805293ab290e7ca8cc1b61a064d28b8a35c76d8eba063dd/uv-0.11.6.tar.gz", hash = "sha256:e3b21b7e80024c95ff339fcd147ac6fc3dd98d3613c9d45d3a1f4fd1057f127b", size = 4073298, upload-time = "2026-04-09T12:09:01.738Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/77/26/8f917e9faddd9cb49abcbc8c7dac5343b0f61d04c6ac36873d2a324fee1a/uv-0.9.11-py3-none-linux_armv6l.whl", hash = "sha256:803f85cf25ab7f1fca10fe2e40a1b9f5b1d48efc25efd6651ba3c9668db6a19e", size = 20787588, upload-time = "2025-11-20T23:18:53.738Z" }, - { url = "https://files.pythonhosted.org/packages/f5/1f/eafd39c719ddee19fc25884f68c1a7e736c0fca63c1cbef925caf8ebd739/uv-0.9.11-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:6a31b0bd4eaec59bf97816aefbcd75cae4fcc8875c4b19ef1846b7bff3d67c70", size = 19922144, upload-time = "2025-11-20T23:18:57.569Z" }, - { url = "https://files.pythonhosted.org/packages/bf/f3/6b9fac39e5b65fa47dba872dcf171f1470490cd645343e8334f20f73885b/uv-0.9.11-py3-none-macosx_11_0_arm64.whl", hash = "sha256:48548a23fb5a103b8955dfafff7d79d21112b8e25ce5ff25e3468dc541b20e83", size = 18380643, upload-time = "2025-11-20T23:19:01.02Z" }, - { url = "https://files.pythonhosted.org/packages/d6/9a/d4080e95950a4fc6fdf20d67b9a43ffb8e3d6d6b7c8dda460ae73ddbecd9/uv-0.9.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:cb680948e678590b5960744af2ecea6f2c0307dbb74ac44daf5c00e84ad8c09f", size = 20310262, upload-time = "2025-11-20T23:19:04.914Z" }, - { url = "https://files.pythonhosted.org/packages/6d/b4/86d9c881bd6accf2b766f7193b50e9d5815f2b34806191d90ea24967965e/uv-0.9.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9ef1982295e5aaf909a9668d6fb6abfc5089666c699f585a36f3a67f1a22916a", size = 20392988, upload-time = "2025-11-20T23:19:08.258Z" }, - { url = "https://files.pythonhosted.org/packages/a3/1d/6a227b7ca1829442c1419ba1db856d176b6e0861f9bf9355a8790a5d02b5/uv-0.9.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:92ff773aa4193148019533c55382c2f9c661824bbf0c2e03f12aeefc800ede57", size = 21394892, upload-time = "2025-11-20T23:19:12.626Z" }, - { url = "https://files.pythonhosted.org/packages/5a/8f/df45b8409923121de8c4081c9d6d8ba3273eaa450645e1e542d83179c7b5/uv-0.9.11-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:70137a46675bbecf3a8b43d292a61767f1b944156af3d0f8d5986292bd86f6cf", size = 22987735, upload-time = "2025-11-20T23:19:16.27Z" }, - { url = "https://files.pythonhosted.org/packages/89/51/bbf3248a619c9f502d310a11362da5ed72c312d354fb8f9667c5aa3be9dd/uv-0.9.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b5af9117bab6c4b3a1cacb0cddfb3cd540d0adfb13c7b8a9a318873cf2d07e52", size = 22617321, upload-time = "2025-11-20T23:19:20.1Z" }, - { url = "https://files.pythonhosted.org/packages/3f/cd/a158ec989c5433dc86ebd9fea800f2aed24255b84ab65b6d7407251e5e31/uv-0.9.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8cc86940d9b3a425575f25dc45247be2fb31f7fed7bf3394ae9daadd466e5b80", size = 21615712, upload-time = "2025-11-20T23:19:23.71Z" }, - { url = "https://files.pythonhosted.org/packages/73/da/2597becbc0fcbb59608d38fda5db79969e76dedf5b072f0e8564c8f0628b/uv-0.9.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e97906ca1b90dac91c23af20e282e2e37c8eb80c3721898733928a295f2defda", size = 21661022, upload-time = "2025-11-20T23:19:27.385Z" }, - { url = "https://files.pythonhosted.org/packages/52/66/9b8f3b3529b23c2a6f5b9612da70ea53117935ec999757b4f1d640f63d63/uv-0.9.11-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:d901269e1db72abc974ba61d37be6e56532e104922329e0b553d9df07ba224be", size = 20440548, upload-time = "2025-11-20T23:19:31.051Z" }, - { url = "https://files.pythonhosted.org/packages/72/b2/683afdb83e96dd966eb7cf3688af56a1b826c8bc1e8182fb10ec35b3e391/uv-0.9.11-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:8abfb7d4b136de3e92dd239ea9a51d4b7bbb970dc1b33bec84d08facf82b9a6e", size = 21493758, upload-time = "2025-11-20T23:19:34.688Z" }, - { url = "https://files.pythonhosted.org/packages/f4/00/99848bc9834aab104fa74aa1a60b1ca478dee824d2e4aacb15af85673572/uv-0.9.11-py3-none-musllinux_1_1_armv7l.whl", hash = "sha256:1f8afc13b3b94bce1e72514c598d41623387b2b61b68d7dbce9a01a0d8874860", size = 20332324, upload-time = "2025-11-20T23:19:38.376Z" }, - { url = "https://files.pythonhosted.org/packages/6c/94/8cfd1bb1cc5d768cb334f976ba2686c6327e4ac91c16b8469b284956d4d9/uv-0.9.11-py3-none-musllinux_1_1_i686.whl", hash = "sha256:7d414cfa410f1850a244d87255f98d06ca61cc13d82f6413c4f03e9e0c9effc7", size = 20845062, upload-time = "2025-11-20T23:19:42.006Z" }, - { url = "https://files.pythonhosted.org/packages/a0/42/43f66bfc621464dabe9cfe3cbf69cddc36464da56ab786c94fc9ccf99cc7/uv-0.9.11-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:edc14143d0ba086a7da4b737a77746bb36bc00e3d26466f180ea99e3bf795171", size = 21857559, upload-time = "2025-11-20T23:19:46.026Z" }, - { url = "https://files.pythonhosted.org/packages/8f/4d/bfd41bf087522601c724d712c3727aeb62f51b1f67c4ab86a078c3947525/uv-0.9.11-py3-none-win32.whl", hash = "sha256:af5fd91eecaa04b4799f553c726307200f45da844d5c7c5880d64db4debdd5dc", size = 19639246, upload-time = "2025-11-20T23:19:50.254Z" }, - { url = "https://files.pythonhosted.org/packages/2c/2f/d51c02627de68a7ca5b82f0a5d61d753beee3fe696366d1a1c5d5e40cd58/uv-0.9.11-py3-none-win_amd64.whl", hash = "sha256:c65a024ad98547e32168f3a52360fe73ff39cd609a8fb9dd2509aac91483cfc8", size = 21626822, upload-time = "2025-11-20T23:19:54.424Z" }, - { url = "https://files.pythonhosted.org/packages/af/d8/e07e866ee328d3c9f27a6d57a018d8330f47be95ef4654a178779c968a66/uv-0.9.11-py3-none-win_arm64.whl", hash = "sha256:4907a696c745703542ed2559bdf5380b92c8b1d4bf290ebfed45bf9a2a2c6690", size = 20046856, upload-time = "2025-11-20T23:19:58.517Z" }, + { url = "https://files.pythonhosted.org/packages/1f/fe/4b61a3d5ad9d02e8a4405026ccd43593d7044598e0fa47d892d4dafe44c9/uv-0.11.6-py3-none-linux_armv6l.whl", hash = "sha256:ada04dcf89ddea5b69d27ac9cdc5ef575a82f90a209a1392e930de504b2321d6", size = 23780079, upload-time = "2026-04-09T12:08:56.609Z" }, + { url = "https://files.pythonhosted.org/packages/52/db/d27519a9e1a5ffee9d71af1a811ad0e19ce7ab9ae815453bef39dd479389/uv-0.11.6-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:5be013888420f96879c6e0d3081e7bcf51b539b034a01777041934457dfbedf3", size = 23214721, upload-time = "2026-04-09T12:09:32.228Z" }, + { url = "https://files.pythonhosted.org/packages/a6/8f/4399fa8b882bd7e0efffc829f73ab24d117d490a93e6bc7104a50282b854/uv-0.11.6-py3-none-macosx_11_0_arm64.whl", hash = "sha256:ffa5dc1cbb52bdce3b8447e83d1601a57ad4da6b523d77d4b47366db8b1ceb18", size = 21750109, upload-time = "2026-04-09T12:09:24.357Z" }, + { url = "https://files.pythonhosted.org/packages/32/07/5a12944c31c3dda253632da7a363edddb869ed47839d4d92a2dc5f546c93/uv-0.11.6-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.musllinux_1_1_aarch64.whl", hash = "sha256:bfb107b4dade1d2c9e572992b06992d51dd5f2136eb8ceee9e62dd124289e825", size = 23551146, upload-time = "2026-04-09T12:09:10.439Z" }, + { url = "https://files.pythonhosted.org/packages/79/5b/2ec8b0af80acd1016ed596baf205ddc77b19ece288473b01926c4a9cf6db/uv-0.11.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.musllinux_1_1_armv7l.whl", hash = "sha256:9e2fe7ce12161d8016b7deb1eaad7905a76ff7afec13383333ca75e0c4b5425d", size = 23331192, upload-time = "2026-04-09T12:09:34.792Z" }, + { url = "https://files.pythonhosted.org/packages/62/7d/eea35935f2112b21c296a3e42645f3e4b1aa8bcd34dcf13345fbd55134b7/uv-0.11.6-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7ed9c6f70c25e8dfeedddf4eddaf14d353f5e6b0eb43da9a14d3a1033d51d915", size = 23337686, upload-time = "2026-04-09T12:09:18.522Z" }, + { url = "https://files.pythonhosted.org/packages/21/47/2584f5ab618f6ebe9bdefb2f765f2ca8540e9d739667606a916b35449eec/uv-0.11.6-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d68a013e609cebf82077cbeeb0809ed5e205257814273bfd31e02fc0353bbfc2", size = 25008139, upload-time = "2026-04-09T12:09:03.983Z" }, + { url = "https://files.pythonhosted.org/packages/95/81/497ae5c1d36355b56b97dc59f550c7e89d0291c163a3f203c6f341dff195/uv-0.11.6-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93f736dddca03dae732c6fdea177328d3bc4bf137c75248f3d433c57416a4311", size = 25712458, upload-time = "2026-04-09T12:09:07.598Z" }, + { url = "https://files.pythonhosted.org/packages/3c/1c/74083238e4fab2672b63575b9008f1ea418b02a714bcfcf017f4f6a309b6/uv-0.11.6-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e96a66abe53fced0e3389008b8d2eff8278cfa8bb545d75631ae8ceb9c929aba", size = 24915507, upload-time = "2026-04-09T12:08:50.892Z" }, + { url = "https://files.pythonhosted.org/packages/5a/ee/e14fe10ba455a823ed18233f12de6699a601890905420b5c504abf115116/uv-0.11.6-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b096311b2743b228df911a19532b3f18fa420bf9530547aecd6a8e04bbfaccd", size = 24971011, upload-time = "2026-04-09T12:08:54.016Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a1/7b9c83eaadf98e343317ff6384a7227a4855afd02cdaf9696bcc71ee6155/uv-0.11.6-py3-none-manylinux_2_28_aarch64.whl", hash = "sha256:904d537b4a6e798015b4a64ff5622023bd4601b43b6cd1e5f423d63471f5e948", size = 23640234, upload-time = "2026-04-09T12:09:15.735Z" }, + { url = "https://files.pythonhosted.org/packages/d6/51/75ccdd23e76ff1703b70eb82881cd5b4d2a954c9679f8ef7e0136ef2cfab/uv-0.11.6-py3-none-manylinux_2_31_riscv64.musllinux_1_1_riscv64.whl", hash = "sha256:4ed8150c26b5e319381d75ae2ce6aba1e9c65888f4850f4e3b3fa839953c90a5", size = 24452664, upload-time = "2026-04-09T12:09:26.875Z" }, + { url = "https://files.pythonhosted.org/packages/4d/86/ace80fe47d8d48b5e3b5aee0b6eb1a49deaacc2313782870250b3faa36f5/uv-0.11.6-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:1c9218c8d4ac35ca6e617fb0951cc0ab2d907c91a6aea2617de0a5494cf162c0", size = 24494599, upload-time = "2026-04-09T12:09:37.368Z" }, + { url = "https://files.pythonhosted.org/packages/05/2d/4b642669b56648194f026de79bc992cbfc3ac2318b0a8d435f3c284934e8/uv-0.11.6-py3-none-musllinux_1_1_i686.whl", hash = "sha256:9e211c83cc890c569b86a4183fcf5f8b6f0c7adc33a839b699a98d30f1310d3a", size = 24159150, upload-time = "2026-04-09T12:09:13.17Z" }, + { url = "https://files.pythonhosted.org/packages/ae/24/7eecd76fe983a74fed1fc700a14882e70c4e857f1d562a9f2303d4286c12/uv-0.11.6-py3-none-musllinux_1_1_x86_64.whl", hash = "sha256:d2a1d2089afdf117ad19a4c1dd36b8189c00ae1ad4135d3bfbfced82342595cf", size = 25164324, upload-time = "2026-04-09T12:08:59.56Z" }, + { url = "https://files.pythonhosted.org/packages/27/e0/bbd4ba7c2e5067bbba617d87d306ec146889edaeeaa2081d3e122178ca08/uv-0.11.6-py3-none-win32.whl", hash = "sha256:6e8344f38fa29f85dcfd3e62dc35a700d2448f8e90381077ef393438dcd5012e", size = 22865693, upload-time = "2026-04-09T12:09:21.415Z" }, + { url = "https://files.pythonhosted.org/packages/a5/33/1983ce113c538a856f2d620d16e39691962ecceef091a84086c5785e32e5/uv-0.11.6-py3-none-win_amd64.whl", hash = "sha256:a28bea69c1186303d1200f155c7a28c449f8a4431e458fcf89360cc7ef546e40", size = 25371258, upload-time = "2026-04-09T12:09:40.52Z" }, + { url = "https://files.pythonhosted.org/packages/35/01/be0873f44b9c9bc250fcbf263367fcfc1f59feab996355bcb6b52fff080d/uv-0.11.6-py3-none-win_arm64.whl", hash = "sha256:a78f6d64b9950e24061bc7ec7f15ff8089ad7f5a976e7b65fcadce58fe02f613", size = 23869585, upload-time = "2026-04-09T12:09:29.425Z" }, ] [[package]] name = "virtualenv" -version = "20.35.4" +version = "21.2.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "distlib" }, { name = "filelock" }, { name = "platformdirs" }, + { name = "python-discovery" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/20/28/e6f1a6f655d620846bd9df527390ecc26b3805a0c5989048c210e22c5ca9/virtualenv-20.35.4.tar.gz", hash = "sha256:643d3914d73d3eeb0c552cbb12d7e82adf0e504dbf86a3182f8771a153a1971c", size = 6028799, upload-time = "2025-10-29T06:57:40.511Z" } +sdist = { url = "https://files.pythonhosted.org/packages/0c/98/3a7e644e19cb26133488caff231be390579860bbbb3da35913c49a1d0a46/virtualenv-21.2.4.tar.gz", hash = "sha256:b294ef68192638004d72524ce7ef303e9d0cf5a44c95ce2e54a7500a6381cada", size = 5850742, upload-time = "2026-04-14T22:15:31.438Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/79/0c/c05523fa3181fdf0c9c52a6ba91a23fbf3246cc095f26f6516f9c60e6771/virtualenv-20.35.4-py3-none-any.whl", hash = "sha256:c21c9cede36c9753eeade68ba7d523529f228a403463376cf821eaae2b650f1b", size = 6005095, upload-time = "2025-10-29T06:57:37.598Z" }, + { url = "https://files.pythonhosted.org/packages/27/8d/edd0bd910ff803c308ee9a6b7778621af0d10252219ad9f19ef4d4982a61/virtualenv-21.2.4-py3-none-any.whl", hash = "sha256:29d21e941795206138d0f22f4e45ff7050e5da6c6472299fb7103318763861ac", size = 5831232, upload-time = "2026-04-14T22:15:29.342Z" }, ] [[package]] name = "wrapt" -version = "2.0.1" +version = "2.1.2" source = { registry = "https://pypi.org/simple" } -sdist = { url = "https://files.pythonhosted.org/packages/49/2a/6de8a50cb435b7f42c46126cf1a54b2aab81784e74c8595c8e025e8f36d3/wrapt-2.0.1.tar.gz", hash = "sha256:9c9c635e78497cacb81e84f8b11b23e0aacac7a136e73b8e5b2109a1d9fc468f", size = 82040, upload-time = "2025-11-07T00:45:33.312Z" } +sdist = { url = "https://files.pythonhosted.org/packages/2e/64/925f213fdcbb9baeb1530449ac71a4d57fc361c053d06bf78d0c5c7cd80c/wrapt-2.1.2.tar.gz", hash = "sha256:3996a67eecc2c68fd47b4e3c564405a5777367adfd9b8abb58387b63ee83b21e", size = 81678, upload-time = "2026-03-06T02:53:25.134Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/ad/fe/41af4c46b5e498c90fc87981ab2972fbd9f0bccda597adb99d3d3441b94b/wrapt-2.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:47b0f8bafe90f7736151f61482c583c86b0693d80f075a58701dd1549b0010a9", size = 78132, upload-time = "2025-11-07T00:44:04.628Z" }, - { url = "https://files.pythonhosted.org/packages/1c/92/d68895a984a5ebbbfb175512b0c0aad872354a4a2484fbd5552e9f275316/wrapt-2.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:cbeb0971e13b4bd81d34169ed57a6dda017328d1a22b62fda45e1d21dd06148f", size = 61211, upload-time = "2025-11-07T00:44:05.626Z" }, - { url = "https://files.pythonhosted.org/packages/e8/26/ba83dc5ae7cf5aa2b02364a3d9cf74374b86169906a1f3ade9a2d03cf21c/wrapt-2.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:eb7cffe572ad0a141a7886a1d2efa5bef0bf7fe021deeea76b3ab334d2c38218", size = 61689, upload-time = "2025-11-07T00:44:06.719Z" }, - { url = "https://files.pythonhosted.org/packages/cf/67/d7a7c276d874e5d26738c22444d466a3a64ed541f6ef35f740dbd865bab4/wrapt-2.0.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:c8d60527d1ecfc131426b10d93ab5d53e08a09c5fa0175f6b21b3252080c70a9", size = 121502, upload-time = "2025-11-07T00:44:09.557Z" }, - { url = "https://files.pythonhosted.org/packages/0f/6b/806dbf6dd9579556aab22fc92908a876636e250f063f71548a8660382184/wrapt-2.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c654eafb01afac55246053d67a4b9a984a3567c3808bb7df2f8de1c1caba2e1c", size = 123110, upload-time = "2025-11-07T00:44:10.64Z" }, - { url = "https://files.pythonhosted.org/packages/e5/08/cdbb965fbe4c02c5233d185d070cabed2ecc1f1e47662854f95d77613f57/wrapt-2.0.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:98d873ed6c8b4ee2418f7afce666751854d6d03e3c0ec2a399bb039cd2ae89db", size = 117434, upload-time = "2025-11-07T00:44:08.138Z" }, - { url = "https://files.pythonhosted.org/packages/2d/d1/6aae2ce39db4cb5216302fa2e9577ad74424dfbe315bd6669725569e048c/wrapt-2.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:c9e850f5b7fc67af856ff054c71690d54fa940c3ef74209ad9f935b4f66a0233", size = 121533, upload-time = "2025-11-07T00:44:12.142Z" }, - { url = "https://files.pythonhosted.org/packages/79/35/565abf57559fbe0a9155c29879ff43ce8bd28d2ca61033a3a3dd67b70794/wrapt-2.0.1-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:e505629359cb5f751e16e30cf3f91a1d3ddb4552480c205947da415d597f7ac2", size = 116324, upload-time = "2025-11-07T00:44:13.28Z" }, - { url = "https://files.pythonhosted.org/packages/e1/e0/53ff5e76587822ee33e560ad55876d858e384158272cd9947abdd4ad42ca/wrapt-2.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2879af909312d0baf35f08edeea918ee3af7ab57c37fe47cb6a373c9f2749c7b", size = 120627, upload-time = "2025-11-07T00:44:14.431Z" }, - { url = "https://files.pythonhosted.org/packages/7c/7b/38df30fd629fbd7612c407643c63e80e1c60bcc982e30ceeae163a9800e7/wrapt-2.0.1-cp313-cp313-win32.whl", hash = "sha256:d67956c676be5a24102c7407a71f4126d30de2a569a1c7871c9f3cabc94225d7", size = 58252, upload-time = "2025-11-07T00:44:17.814Z" }, - { url = "https://files.pythonhosted.org/packages/85/64/d3954e836ea67c4d3ad5285e5c8fd9d362fd0a189a2db622df457b0f4f6a/wrapt-2.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:9ca66b38dd642bf90c59b6738af8070747b610115a39af2498535f62b5cdc1c3", size = 60500, upload-time = "2025-11-07T00:44:15.561Z" }, - { url = "https://files.pythonhosted.org/packages/89/4e/3c8b99ac93527cfab7f116089db120fef16aac96e5f6cdb724ddf286086d/wrapt-2.0.1-cp313-cp313-win_arm64.whl", hash = "sha256:5a4939eae35db6b6cec8e7aa0e833dcca0acad8231672c26c2a9ab7a0f8ac9c8", size = 58993, upload-time = "2025-11-07T00:44:16.65Z" }, - { url = "https://files.pythonhosted.org/packages/f9/f4/eff2b7d711cae20d220780b9300faa05558660afb93f2ff5db61fe725b9a/wrapt-2.0.1-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:a52f93d95c8d38fed0669da2ebdb0b0376e895d84596a976c15a9eb45e3eccb3", size = 82028, upload-time = "2025-11-07T00:44:18.944Z" }, - { url = "https://files.pythonhosted.org/packages/0c/67/cb945563f66fd0f61a999339460d950f4735c69f18f0a87ca586319b1778/wrapt-2.0.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4e54bbf554ee29fcceee24fa41c4d091398b911da6e7f5d7bffda963c9aed2e1", size = 62949, upload-time = "2025-11-07T00:44:20.074Z" }, - { url = "https://files.pythonhosted.org/packages/ec/ca/f63e177f0bbe1e5cf5e8d9b74a286537cd709724384ff20860f8f6065904/wrapt-2.0.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:908f8c6c71557f4deaa280f55d0728c3bca0960e8c3dd5ceeeafb3c19942719d", size = 63681, upload-time = "2025-11-07T00:44:21.345Z" }, - { url = "https://files.pythonhosted.org/packages/39/a1/1b88fcd21fd835dca48b556daef750952e917a2794fa20c025489e2e1f0f/wrapt-2.0.1-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:e2f84e9af2060e3904a32cea9bb6db23ce3f91cfd90c6b426757cf7cc01c45c7", size = 152696, upload-time = "2025-11-07T00:44:24.318Z" }, - { url = "https://files.pythonhosted.org/packages/62/1c/d9185500c1960d9f5f77b9c0b890b7fc62282b53af7ad1b6bd779157f714/wrapt-2.0.1-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e3612dc06b436968dfb9142c62e5dfa9eb5924f91120b3c8ff501ad878f90eb3", size = 158859, upload-time = "2025-11-07T00:44:25.494Z" }, - { url = "https://files.pythonhosted.org/packages/91/60/5d796ed0f481ec003220c7878a1d6894652efe089853a208ea0838c13086/wrapt-2.0.1-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:6d2d947d266d99a1477cd005b23cbd09465276e302515e122df56bb9511aca1b", size = 146068, upload-time = "2025-11-07T00:44:22.81Z" }, - { url = "https://files.pythonhosted.org/packages/04/f8/75282dd72f102ddbfba137e1e15ecba47b40acff32c08ae97edbf53f469e/wrapt-2.0.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:7d539241e87b650cbc4c3ac9f32c8d1ac8a54e510f6dca3f6ab60dcfd48c9b10", size = 155724, upload-time = "2025-11-07T00:44:26.634Z" }, - { url = "https://files.pythonhosted.org/packages/5a/27/fe39c51d1b344caebb4a6a9372157bdb8d25b194b3561b52c8ffc40ac7d1/wrapt-2.0.1-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:4811e15d88ee62dbf5c77f2c3ff3932b1e3ac92323ba3912f51fc4016ce81ecf", size = 144413, upload-time = "2025-11-07T00:44:27.939Z" }, - { url = "https://files.pythonhosted.org/packages/83/2b/9f6b643fe39d4505c7bf926d7c2595b7cb4b607c8c6b500e56c6b36ac238/wrapt-2.0.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c1c91405fcf1d501fa5d55df21e58ea49e6b879ae829f1039faaf7e5e509b41e", size = 150325, upload-time = "2025-11-07T00:44:29.29Z" }, - { url = "https://files.pythonhosted.org/packages/bb/b6/20ffcf2558596a7f58a2e69c89597128781f0b88e124bf5a4cadc05b8139/wrapt-2.0.1-cp313-cp313t-win32.whl", hash = "sha256:e76e3f91f864e89db8b8d2a8311d57df93f01ad6bb1e9b9976d1f2e83e18315c", size = 59943, upload-time = "2025-11-07T00:44:33.211Z" }, - { url = "https://files.pythonhosted.org/packages/87/6a/0e56111cbb3320151eed5d3821ee1373be13e05b376ea0870711f18810c3/wrapt-2.0.1-cp313-cp313t-win_amd64.whl", hash = "sha256:83ce30937f0ba0d28818807b303a412440c4b63e39d3d8fc036a94764b728c92", size = 63240, upload-time = "2025-11-07T00:44:30.935Z" }, - { url = "https://files.pythonhosted.org/packages/1d/54/5ab4c53ea1f7f7e5c3e7c1095db92932cc32fd62359d285486d00c2884c3/wrapt-2.0.1-cp313-cp313t-win_arm64.whl", hash = "sha256:4b55cacc57e1dc2d0991dbe74c6419ffd415fb66474a02335cb10efd1aa3f84f", size = 60416, upload-time = "2025-11-07T00:44:32.002Z" }, - { url = "https://files.pythonhosted.org/packages/15/d1/b51471c11592ff9c012bd3e2f7334a6ff2f42a7aed2caffcf0bdddc9cb89/wrapt-2.0.1-py3-none-any.whl", hash = "sha256:4d2ce1bf1a48c5277d7969259232b57645aae5686dba1eaeade39442277afbca", size = 44046, upload-time = "2025-11-07T00:45:32.116Z" }, + { url = "https://files.pythonhosted.org/packages/4c/7a/d936840735c828b38d26a854e85d5338894cda544cb7a85a9d5b8b9c4df7/wrapt-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:787fd6f4d67befa6fe2abdffcbd3de2d82dfc6fb8a6d850407c53332709d030b", size = 61259, upload-time = "2026-03-06T02:53:41.922Z" }, + { url = "https://files.pythonhosted.org/packages/5e/88/9a9b9a90ac8ca11c2fdb6a286cb3a1fc7dd774c00ed70929a6434f6bc634/wrapt-2.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:4bdf26e03e6d0da3f0e9422fd36bcebf7bc0eeb55fdf9c727a09abc6b9fe472e", size = 61851, upload-time = "2026-03-06T02:52:48.672Z" }, + { url = "https://files.pythonhosted.org/packages/03/a9/5b7d6a16fd6533fed2756900fc8fc923f678179aea62ada6d65c92718c00/wrapt-2.1.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:bbac24d879aa22998e87f6b3f481a5216311e7d53c7db87f189a7a0266dafffb", size = 121446, upload-time = "2026-03-06T02:54:14.013Z" }, + { url = "https://files.pythonhosted.org/packages/45/bb/34c443690c847835cfe9f892be78c533d4f32366ad2888972c094a897e39/wrapt-2.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:16997dfb9d67addc2e3f41b62a104341e80cac52f91110dece393923c0ebd5ca", size = 123056, upload-time = "2026-03-06T02:54:10.829Z" }, + { url = "https://files.pythonhosted.org/packages/93/b9/ff205f391cb708f67f41ea148545f2b53ff543a7ac293b30d178af4d2271/wrapt-2.1.2-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:162e4e2ba7542da9027821cb6e7c5e068d64f9a10b5f15512ea28e954893a267", size = 117359, upload-time = "2026-03-06T02:53:03.623Z" }, + { url = "https://files.pythonhosted.org/packages/1f/3d/1ea04d7747825119c3c9a5e0874a40b33594ada92e5649347c457d982805/wrapt-2.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f29c827a8d9936ac320746747a016c4bc66ef639f5cd0d32df24f5eacbf9c69f", size = 121479, upload-time = "2026-03-06T02:53:45.844Z" }, + { url = "https://files.pythonhosted.org/packages/78/cc/ee3a011920c7a023b25e8df26f306b2484a531ab84ca5c96260a73de76c0/wrapt-2.1.2-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:a9dd9813825f7ecb018c17fd147a01845eb330254dff86d3b5816f20f4d6aaf8", size = 116271, upload-time = "2026-03-06T02:54:46.356Z" }, + { url = "https://files.pythonhosted.org/packages/98/fd/e5ff7ded41b76d802cf1191288473e850d24ba2e39a6ec540f21ae3b57cb/wrapt-2.1.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6f8dbdd3719e534860d6a78526aafc220e0241f981367018c2875178cf83a413", size = 120573, upload-time = "2026-03-06T02:52:50.163Z" }, + { url = "https://files.pythonhosted.org/packages/47/c5/242cae3b5b080cd09bacef0591691ba1879739050cc7c801ff35c8886b66/wrapt-2.1.2-cp313-cp313-win32.whl", hash = "sha256:5c35b5d82b16a3bc6e0a04349b606a0582bc29f573786aebe98e0c159bc48db6", size = 58205, upload-time = "2026-03-06T02:53:47.494Z" }, + { url = "https://files.pythonhosted.org/packages/12/69/c358c61e7a50f290958809b3c61ebe8b3838ea3e070d7aac9814f95a0528/wrapt-2.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:f8bc1c264d8d1cf5b3560a87bbdd31131573eb25f9f9447bb6252b8d4c44a3a1", size = 60452, upload-time = "2026-03-06T02:53:30.038Z" }, + { url = "https://files.pythonhosted.org/packages/8e/66/c8a6fcfe321295fd8c0ab1bd685b5a01462a9b3aa2f597254462fc2bc975/wrapt-2.1.2-cp313-cp313-win_arm64.whl", hash = "sha256:3beb22f674550d5634642c645aba4c72a2c66fb185ae1aebe1e955fae5a13baf", size = 58842, upload-time = "2026-03-06T02:52:52.114Z" }, + { url = "https://files.pythonhosted.org/packages/da/55/9c7052c349106e0b3f17ae8db4b23a691a963c334de7f9dbd60f8f74a831/wrapt-2.1.2-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:0fc04bc8664a8bc4c8e00b37b5355cffca2535209fba1abb09ae2b7c76ddf82b", size = 63075, upload-time = "2026-03-06T02:53:19.108Z" }, + { url = "https://files.pythonhosted.org/packages/09/a8/ce7b4006f7218248dd71b7b2b732d0710845a0e49213b18faef64811ffef/wrapt-2.1.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a9b9d50c9af998875a1482a038eb05755dfd6fe303a313f6a940bb53a83c3f18", size = 63719, upload-time = "2026-03-06T02:54:33.452Z" }, + { url = "https://files.pythonhosted.org/packages/e4/e5/2ca472e80b9e2b7a17f106bb8f9df1db11e62101652ce210f66935c6af67/wrapt-2.1.2-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2d3ff4f0024dd224290c0eabf0240f1bfc1f26363431505fb1b0283d3b08f11d", size = 152643, upload-time = "2026-03-06T02:52:42.721Z" }, + { url = "https://files.pythonhosted.org/packages/36/42/30f0f2cefca9d9cbf6835f544d825064570203c3e70aa873d8ae12e23791/wrapt-2.1.2-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3278c471f4468ad544a691b31bb856374fbdefb7fee1a152153e64019379f015", size = 158805, upload-time = "2026-03-06T02:54:25.441Z" }, + { url = "https://files.pythonhosted.org/packages/bb/67/d08672f801f604889dcf58f1a0b424fe3808860ede9e03affc1876b295af/wrapt-2.1.2-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a8914c754d3134a3032601c6984db1c576e6abaf3fc68094bb8ab1379d75ff92", size = 145990, upload-time = "2026-03-06T02:53:57.456Z" }, + { url = "https://files.pythonhosted.org/packages/68/a7/fd371b02e73babec1de6ade596e8cd9691051058cfdadbfd62a5898f3295/wrapt-2.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ff95d4264e55839be37bafe1536db2ab2de19da6b65f9244f01f332b5286cfbf", size = 155670, upload-time = "2026-03-06T02:54:55.309Z" }, + { url = "https://files.pythonhosted.org/packages/86/2d/9fe0095dfdb621009f40117dcebf41d7396c2c22dca6eac779f4c007b86c/wrapt-2.1.2-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:76405518ca4e1b76fbb1b9f686cff93aebae03920cc55ceeec48ff9f719c5f67", size = 144357, upload-time = "2026-03-06T02:54:24.092Z" }, + { url = "https://files.pythonhosted.org/packages/0e/b6/ec7b4a254abbe4cde9fa15c5d2cca4518f6b07d0f1b77d4ee9655e30280e/wrapt-2.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c0be8b5a74c5824e9359b53e7e58bef71a729bacc82e16587db1c4ebc91f7c5a", size = 150269, upload-time = "2026-03-06T02:53:31.268Z" }, + { url = "https://files.pythonhosted.org/packages/6e/6b/2fabe8ebf148f4ee3c782aae86a795cc68ffe7d432ef550f234025ce0cfa/wrapt-2.1.2-cp313-cp313t-win32.whl", hash = "sha256:f01277d9a5fc1862f26f7626da9cf443bebc0abd2f303f41c5e995b15887dabd", size = 59894, upload-time = "2026-03-06T02:54:15.391Z" }, + { url = "https://files.pythonhosted.org/packages/ca/fb/9ba66fc2dedc936de5f8073c0217b5d4484e966d87723415cc8262c5d9c2/wrapt-2.1.2-cp313-cp313t-win_amd64.whl", hash = "sha256:84ce8f1c2104d2f6daa912b1b5b039f331febfeee74f8042ad4e04992bd95c8f", size = 63197, upload-time = "2026-03-06T02:54:41.943Z" }, + { url = "https://files.pythonhosted.org/packages/c0/1c/012d7423c95d0e337117723eb8ecf73c622ce15a97847e84cf3f8f26cd7e/wrapt-2.1.2-cp313-cp313t-win_arm64.whl", hash = "sha256:a93cd767e37faeddbe07d8fc4212d5cba660af59bdb0f6372c93faaa13e6e679", size = 60363, upload-time = "2026-03-06T02:54:48.093Z" }, + { url = "https://files.pythonhosted.org/packages/1a/c7/8528ac2dfa2c1e6708f647df7ae144ead13f0a31146f43c7264b4942bf12/wrapt-2.1.2-py3-none-any.whl", hash = "sha256:b8fd6fa2b2c4e7621808f8c62e8317f4aae56e59721ad933bac5239d913cf0e8", size = 43993, upload-time = "2026-03-06T02:53:12.905Z" }, ]