From 1a6b2b3c7dbb2d7eccc6e3410cb5c0520a1c2c15 Mon Sep 17 00:00:00 2001 From: Jonathan Lippincott Date: Fri, 18 Apr 2025 21:17:14 +0200 Subject: [PATCH 01/10] minor: removes unused, old, 'failed translation' code --- src/commands/translate.js | 3 --- src/lib/consts.js | 1 - 2 files changed, 4 deletions(-) diff --git a/src/commands/translate.js b/src/commands/translate.js index 1787ee4..ea786c6 100644 --- a/src/commands/translate.js +++ b/src/commands/translate.js @@ -571,8 +571,6 @@ async function translateTextViaProvider({ messages.push( `You are a professional translator for an application's text from ${sourceLang} to ${targetLang}. ` + `Translate the text accurately without adding explanations or additional content. Only return the text. ` - //+ `If and only if you absolutely cannot translate the text, you can respond with "${TRANSLATION_FAILED_RESPONSE_TEXT}" -- but please try to translate the text if you can. It would be greatly - // appreciated.`, // With this, the AI seems to be lazy and use it way too often ) if (appContextMessage?.length) { messages.push(`Here is some high-level information about the application you are translating text for: ${appContextMessage}`) @@ -593,7 +591,6 @@ async function translateTextViaProvider({ const translated = provider.getResult(response, log) if (!translated?.length) throw new Error(`${providerName} translated text to empty string. You may need to top up your credits.`) log.D(`${translated}`) - if (translated === TRANSLATION_FAILED_RESPONSE_TEXT) throw new Error(`${providerName} failed to translate string to ${targetLang}; string: ${text}`) outResult.translated = translated } catch (error) { let errorHandled = false diff --git a/src/lib/consts.js b/src/lib/consts.js index 8fe0ef3..c4fa3aa 100644 --- a/src/lib/consts.js +++ b/src/lib/consts.js @@ -1,6 +1,5 @@ import * as path from 'path' -export const TRANSLATION_FAILED_RESPONSE_TEXT = '<<>>' export const LANGTAG_ENGLISH = 'en' export const LANGTAG_DEFAULT = LANGTAG_ENGLISH From 278d32fdfbd4a65464a5e22e4b316fe8c019d7c8 Mon Sep 17 00:00:00 2001 From: Jonathan Lippincott Date: Fri, 18 Apr 2025 21:17:53 +0200 Subject: [PATCH 02/10] minor: ensures getFileExtension() returns normalized (lower-case), always --- src/lib/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/utils.js b/src/lib/utils.js index da933c1..b768c13 100644 --- a/src/lib/utils.js +++ b/src/lib/utils.js @@ -118,6 +118,6 @@ export function pick(o, ...props) { // Returns the extension without the '.' export function getFileExtension(path) { if (path.indexOf('.') < 0) return null - return path.split('.').pop() + return path.split('.').pop().toLowerCase() } From 379fa281cbb564b3d4db4bf35a836ad9f1c60f3b Mon Sep 17 00:00:00 2001 From: Jonathan Lippincott Date: Fri, 18 Apr 2025 21:18:10 +0200 Subject: [PATCH 03/10] enhancement: adds ensureDir() helper --- src/lib/io.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/io.js b/src/lib/io.js index d7df69b..f9c221c 100644 --- a/src/lib/io.js +++ b/src/lib/io.js @@ -134,3 +134,8 @@ export function dirExists(dir, log) { } } +export function ensureDir(dir, log) { + if (dirExists(dir, log)) return + fs.mkdirSync(dir, { recursive: true }) +} + From c84d60856b93bc5b9d3e447d556b9e55df2ff06d Mon Sep 17 00:00:00 2001 From: Jonathan Lippincott Date: Fri, 18 Apr 2025 21:18:44 +0200 Subject: [PATCH 04/10] breaking/enhancements: --reference-file no longer required + other significant changes * A reference file can now be specified from a config, via `referenceFile` * `--output-dir` can be specified from a config, via `outputDir` * `translate` is now the default command * If `--config-file` is not specified, ALT looks for `alt.config.json` in the current working directory; this is nice since you mostly want to run the tool from your project root dir. If the file does not exist there, ALT will search the output dir for `alt.config.json`. If no config is found, a default config is created (in memory only), like previous versions did. Previously, the config file path was deduced from the reference file path, which was a bit unusual. * As a consequence of these changes, `alt` can be run with no arguments in a project root directory. --- alt.config.json | 78 +++++++++++++++++++++++++++++++ package.json | 2 +- src/commands/translate.js | 92 +++++++++++++++++++++++++++++++------ src/lib/config.js | 44 ++++++++++++------ src/lib/consts.js | 4 +- src/lib/reference-loader.js | 2 +- src/main.mjs | 18 ++++---- 7 files changed, 198 insertions(+), 42 deletions(-) create mode 100644 alt.config.json diff --git a/alt.config.json b/alt.config.json new file mode 100644 index 0000000..05be579 --- /dev/null +++ b/alt.config.json @@ -0,0 +1,78 @@ +{ + "appContextMessage": "An AI-driven translation tool", + "referenceLanguage": "en", + "provider": "anthropic", + "outputDir": "localization", + "referenceFile": "localization/reference.js", + "targetLanguages": [ + "aa", + "af", + "agq", + "ak", + "am", + "ar", + "as", + "asa", + "ast", + "az", + "ba", + "bas", + "be", + "bem", + "bez", + "bg", + "bm", + "bn", + "bo", + "br", + "brx", + "bs", + "byn", + "ca", + "ccp", + "cd-RU", + "ceb", + "cgg", + "chr", + "co", + "cs", + "cu-RU", + "da", + "de-AT", + "de-CH", + "de-DE", + "dua", + "dv", + "dz", + "ebu", + "en", + "es-ES", + "es-MX", + "et", + "eu", + "fr-CA", + "fr-CH", + "fr-FR", + "gsw", + "hi", + "hr", + "hy", + "ja", + "ksf", + "km", + "ku", + "kw", + "my", + "nl", + "ru", + "prs", + "sq", + "swc", + "th", + "tzm-Latn-", + "uk", + "vi", + "zh-Hans", + "zh-Hant" + ] +} diff --git a/package.json b/package.json index 5baa00c..916e625 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "type": "module", "name": "@drone1/alt", - "version": "1.0.4", + "version": "1.1.0", "description": "An AI-powered localization tool", "main": "src/index.mjs", "bin": { diff --git a/src/commands/translate.js b/src/commands/translate.js index ea786c6..086593d 100644 --- a/src/commands/translate.js +++ b/src/commands/translate.js @@ -1,17 +1,23 @@ import * as path from 'path' import axios from 'axios' -import { fileURLToPath } from 'url' import { Listr } from 'listr2' import { localize, localizeFormatted } from '../localizer/localize.js' import { DEFAULT_CACHE_FILENAME, DEFAULT_LLM_MODELS, OVERLOADED_BACKOFF_INTERVAL_MS, - TRANSLATION_FAILED_RESPONSE_TEXT, VALID_TRANSLATION_PROVIDERS } from '../lib/consts.js' -import { assertValidPath } from '../lib/assert.js' -import { mkTmpDir, normalizeOutputPath, readFileAsText, readJsonFile, writeJsonFile } from '../lib/io.js' -import { calculateHash, normalizeData, sleep } from '../lib/utils.js' +import { assertIsObj, assertValidPath } from '../lib/assert.js' +import { + dirExists, + ensureDir, + mkTmpDir, + normalizeOutputPath, + readFileAsText, + readJsonFile, + writeJsonFile, +} from '../lib/io.js' +import { calculateHash, getFileExtension, normalizeData, sleep } from '../lib/utils.js' import { formatContextKeyFromKey, isContextKey } from '../lib/context-keys.js' import { loadConfig } from '../lib/config.js' import { loadTranslationProvider } from '../lib/provider.js' @@ -22,15 +28,73 @@ import { loadReferenceFile } from '../lib/reference-loader.js' export async function runTranslation({ appState, options, log }) { let exitCode = 0 try { - const refFileDir = path.dirname(options.referenceFile) - let outputDir = options.outputDir ?? refFileDir - - // Load config file or create default + // Attempt to load a config file, or return default values const config = await loadConfig({ configFile: options.configFile, - refFileDir, log }) + assertIsObj(config) + + const referenceFile = options.referenceFile ?? config.referenceFile + if (!referenceFile?.length) { + throw new Error( + localize({ + token: 'error-no-reference-file-specified', + lang: appState.lang, + log + }) + ) + } + log.D(`referenceFile=${referenceFile}`) + + // Resolve referenceExportedVarName + let referenceExportedVarName + const referenceFileExt = getFileExtension(referenceFile) + if (['js','mjs'].includes(referenceFileExt)) { + log.D(`Searching for reference exported var name for .${referenceFileExt} extension...`) + if (options.referenceExportedVarName?.length) { + log.D(`Found reference exported var name via --reference-exported-var-name`) + referenceExportedVarName = options.referenceExportedVarName + } else if (config.referenceExportedVarName?.length) { + log.D(`Found reference exported var name in config, via 'referenceExportedVarName'`) + referenceExportedVarName = config.referenceExportedVarName + } else { + log.D(`No reference exported var name found; `) + } + } + log.D(`referenceExportedVarName=${referenceExportedVarName}`) + + const refFileDir = path.dirname(referenceFile) + let outputDir = path.resolve(options.outputDir ?? config.outputDir ?? refFileDir) + log.D(`outputDir=${outputDir}`) + if (!outputDir?.length) { + throw new Error( + localizeFormatted({ + token: 'error-no-output-dir-specified', + data: { refFileDir }, + lang: appState.lang, + log + }) + ) + } + + if (!dirExists(outputDir, log)) { + log.V(`Directory "${outputDir}" did not exist -- creating...`) + ensureDir(outputDir, log) + + if (!dirExists(outputDir, log)) { + throw new Error( + localizeFormatted({ + token: 'error-dir-create-failed', + data: { dir: outputDir }, + lang: appState.lang, + log + }) + ) + } + } else { + log.D(`Output dir "${outputDir}" existed`) + } // Validate provider const providerName = (options.provider ?? config.provider)?.toLowerCase() @@ -89,14 +153,14 @@ export async function runTranslation({ appState, options, log }) { appState.tmpDir = tmpDir // Copy to a temp location first so we can ensure it has an .mjs extension - const referenceData = await loadReferenceFile({ appLang: appState.lang, options, tmpDir, log }) + const referenceData = await loadReferenceFile({ appLang: appState.lang, referenceFile, referenceExportedVarName, tmpDir, log }) if (!referenceData) { throw new Error( localizeFormatted({ token: 'error-no-reference-data-in-variable', data: { - referenceExportedVarName: options.referenceExportedVarName, - referenceFile: options.referenceFile + referenceExportedVarName, + referenceFile, }, lang: appState.lang, log @@ -104,7 +168,7 @@ export async function runTranslation({ appState, options, log }) { ) } - const referenceHash = calculateHash(await readFileAsText(options.referenceFile)) + const referenceHash = calculateHash(await readFileAsText(referenceFile)) const referenceChanged = referenceHash !== readOnlyCache.referenceHash if (referenceChanged) { log.V('Reference file has changed since last run') diff --git a/src/lib/config.js b/src/lib/config.js index f10b8da..f4f87d8 100644 --- a/src/lib/config.js +++ b/src/lib/config.js @@ -1,26 +1,42 @@ import * as path from 'path' import { DEFAULT_CONFIG_FILENAME } from './consts.js' -import { readJsonFile } from './io.js' +import { fileExists, readJsonFile } from './io.js' -export async function loadConfig({ configFile, refFileDir, log }) { +export async function loadConfig({ configFile, log }) { let configFilePath if (configFile?.length) { log.V(`Using config file specified by --config-file "${configFile}"...`) configFilePath = configFile } else { - log.V(`Using config file path based on reference file dir, "${refFileDir}"...`) - configFilePath = path.resolve(refFileDir, DEFAULT_CONFIG_FILENAME) + // Search for a config in the current working directory + const cwdConfigFilePath = path.resolve(process.cwd(), DEFAULT_CONFIG_FILENAME) + if (await fileExists(cwdConfigFilePath)) { + log.V(`Using config file in current working dir, "${process.cwd()}"...`) + configFilePath = cwdConfigFilePath + } else { + log.V(`"${DEFAULT_CONFIG_FILENAME}" not wasn't found in the current working directory...`) + } } - log.V(`Attempting to load config file from "${configFilePath}"`) - return await readJsonFile(configFilePath) || { - provider: null, - targetLanguages: [], - lookForContextData: false, - contextPrefix: '', - contextSuffix: '', - referenceLanguage: null, - normalizeOutputFilenames: false + let result + if (configFilePath?.length) { + log.V(`Attempting to load config file from "${configFilePath}"`) + result = await readJsonFile(configFilePath) + } + + if (!result) { + result = { + provider: null, + targetLanguages: [], + lookForContextData: false, + contextPrefix: '', + contextSuffix: '', + outputDir: null, + referenceFile: null, + referenceLanguage: null, + normalizeOutputFilenames: false + } } -} + return result +} diff --git a/src/lib/consts.js b/src/lib/consts.js index c4fa3aa..c81fe07 100644 --- a/src/lib/consts.js +++ b/src/lib/consts.js @@ -1,5 +1,3 @@ -import * as path from 'path' - export const LANGTAG_ENGLISH = 'en' export const LANGTAG_DEFAULT = LANGTAG_ENGLISH @@ -18,7 +16,7 @@ export const ENV_VARS = [ export const LOCALIZATION_SRC_DIR = 'localization' export const DEFAULT_CACHE_FILENAME = '.localization.cache.json' -export const DEFAULT_CONFIG_FILENAME = 'config.json' +export const DEFAULT_CONFIG_FILENAME = 'alt.config.json' export const OVERLOADED_BACKOFF_INTERVAL_MS = 30 * 1000 export const CWD = process.cwd() diff --git a/src/lib/reference-loader.js b/src/lib/reference-loader.js index 3ed53ca..ce39d33 100644 --- a/src/lib/reference-loader.js +++ b/src/lib/reference-loader.js @@ -3,7 +3,7 @@ import { getFileExtension } from './utils.js' import { SUPPORTED_REFERENCE_FILE_EXTENSIONS } from './consts.js' import { localizeFormatted } from '../localizer/localize.js' -export async function loadReferenceFile({ appLang, options: { referenceFile, referenceExportedVarName }, tmpDir, log }) { +export async function loadReferenceFile({ appLang, referenceFile, referenceExportedVarName, tmpDir, log }) { const ext = getFileExtension(referenceFile)?.toLowerCase() if (!SUPPORTED_REFERENCE_FILE_EXTENSIONS.includes(ext)) { throw new Error( diff --git a/src/main.mjs b/src/main.mjs index 650fd39..0a65a5b 100755 --- a/src/main.mjs +++ b/src/main.mjs @@ -105,17 +105,17 @@ export async function run() { addSharedOptions({ notRequired: [ 'provider' ], program: program - .command('translate') - .requiredOption('-r, --reference-file ', 'Path to reference file of source strings to be translated. This file can be in .js, .mjs, .json, or .jsonc formats and is presumed to be' + - ' in the reference language specified by --reference-language') - .option('-c, --config-file ', `Path to config file; defaults to /${DEFAULT_CONFIG_FILENAME}`) + .command('translate', { isDefault: true }) + .option('-c, --config-file ', `Path to config file; defaults to "${DEFAULT_CONFIG_FILENAME}" in the current working directory if not specified`) + .option('-r, --reference-file ', `Path to reference file of source strings to be translated. This file can be in .js, .mjs, .json, or .jsonc formats and is presumed to be` + + ` in the reference language specified by --reference-language; overrides any 'referenceFile' config setting`) + .option('-o, --output-dir ', `Output directory for localized files; overrides any 'outputDir' config setting`) .option('-rl, --reference-language ', `The reference file's language; overrides any 'referenceLanguage' config setting`) - .option('-o, --output-dir ', 'Output directory for localized files') .option('-tl, --target-languages ', `Comma-separated list of language codes; overrides any 'targetLanguages' config setting`, value => languageList(value, log)) - .option('-k, --keys ', 'Comma-separated list of keys to process', keyList) - .option('-R, --reference-exported-var-name ', `For .js or .mjs reference files, this will be the exported variable, e.g. for 'export default = {...}' you'd use 'default' here, or 'data' for 'export const data = { ... }'. For .json or .jsonc reference files, this value is ignored.`, 'default') - .option('-m, --app-context-message ', `Description of your app to give context. Passed with each translation request; overrides any 'appContextMessage' config setting`) - .option('-f, --force', 'Force regeneration of all translations', false) + .option('-k, --keys ', 'Comma-separated list of keys to process; if none are processed, all keys in the reference file will be processed', keyList) + .option('-R, --reference-exported-var-name ', `For .js or .mjs reference files only, this will be the exported variable, e.g. for 'export default = {...}' you'd use 'default' here, or 'data' for 'export const data = { ... }'. For .json or .jsonc reference files, this value is ignored.`, 'default') + .option('-m, --app-context-message ', `Description of your app, to be passed along to the AI, per translation request; overrides any 'appContextMessage' config setting`) + .option('-f, --force', `Force regeneration of all keys; if no '--keys' argument is specified, all keys will be processed`, false) .option('-rtw, --realtime-writes', 'Write updates to disk immediately, rather than on shutdown', false) .option('-y, --tty', 'Use tty/simple renderer; useful for CI', false) .option('-M, --model ', `LLM model name to use; defaults are: ${Object.keys(DEFAULT_LLM_MODELS).map(p => `for "${p}": "${DEFAULT_LLM_MODELS[p]}"`).join(', ')}; use the 'list-models' command to view all models`) From 97f652dd6cbac7b095eea4ebafbe630d479e256a Mon Sep 17 00:00:00 2001 From: Jonathan Lippincott Date: Fri, 18 Apr 2025 21:36:53 +0200 Subject: [PATCH 05/10] test: removes unneeded test --- test/main-cli.test.js | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/test/main-cli.test.js b/test/main-cli.test.js index c99c751..7833c60 100644 --- a/test/main-cli.test.js +++ b/test/main-cli.test.js @@ -58,22 +58,4 @@ describe('main CLI functionality', () => { expect(result.stdout).to.include('-r, --reference-file') expect(result.stdout).to.include('-tl, --target-languages') }) - - it('should return error for missing required options', async () => { - try { - // Run translate command without required options - await execa('node', [ - path.resolve(__dirname, '../alt.mjs'), - 'translate' - ]) - // Should not reach here as the command should fail - expect.fail('Command should have failed with missing required options') - } catch (error) { - // Check that the command failed - expect(error.exitCode).to.not.equal(0) - - // Error should mention missing required option - expect(error.stderr).to.include('required option') - } - }) }) From 328be0cbe4173e02d2154e8f0c29fcdc5b3ffe9d Mon Sep 17 00:00:00 2001 From: Jonathan Lippincott Date: Fri, 18 Apr 2025 21:37:21 +0200 Subject: [PATCH 06/10] docs: update --- README.md | 99 ++++++++++++++++++++++++++++++++----------------------- 1 file changed, 57 insertions(+), 42 deletions(-) diff --git a/README.md b/README.md index 5d58e9a..6271d3b 100644 --- a/README.md +++ b/README.md @@ -30,13 +30,14 @@ * [Formatting](#formatting) * [Translation rules](#translation-rules) * [Additional notes](#additional-notes) + * [Yes, you should commit your .localization.cache.json](#yes-you-should-commit-your-localizationcachejson) * [Delayed vs. realtime writes](#delayed-vs-realtime-writes) * [CI](#ci) * [Contributing](#contributing) * [Feedback](#feedback) - + @@ -101,12 +102,15 @@ Sample output: Note that output files can be lower-cased if you pass the ``--normalize-output-filenames`` option, so `fr-FR` translations would write to `fr-fr.json` ## Config file -[_optional_] For convenience, a config file is supported. You can use a config file in conjunction with command-line arguments. Command-line arguments override config file values. +[_optional_] For convenience, a config file is supported. You can use a config file in conjunction with command-line arguments. -By default, ALT will search the output directory for `config.json`, but you can specify a path explicitly using -`--config-file`. +Command-line arguments override config file values. -Here's an example config: +If no explicit config file is specified via `--config-file`, ALT will search for a file with the name `alt.config.json` in the current working directory. + +If no config is loaded, you'll need to specify `--reference-file` and `--provider`, otherwise ALT will fail. + +Here's an example `alt.config.json` file you might keep in your project's root directory: ``` { @@ -116,13 +120,17 @@ Here's an example config: "lookForContextData": true, "contextPrefix": "_context:", "contextSuffix": "", + "outputDir": "localization", + "referenceFile": "localization/reference.js", "targetLanguages": [ "es-MX", "zh-SG" ] } ``` -Any of the above settings can be specified using command-line arguments (`--app-context-message`, `--reference-language`, `--provider`, `--target-languages`). Command-line arguments take precedence. +Since in most cases these arguments will not change often, a config file is recommended. + +Any of the above settings can be specified using command-line arguments, but note the mapping from _camelCase_ to _kebab-case_ (`appContextMessage` => `--app-context-message`, `referenceLanguage` => `--reference-language`, etc.). ## Adding context Sometimes a string isn't enough to give context to the AI, and as a result, it may give an undesirable translation. ALT allows you to specify additional context for this reason. @@ -186,15 +194,15 @@ Environment variables: Usage: alt translate [options] Options: - -r, --reference-file Path to reference file of source strings to be translated. This file can be in .js, .mjs, .json, or .jsonc formats and is presumed to be in the reference language specified by --reference-language - -c, --config-file Path to config file; defaults to /config.json + -c, --config-file Path to config file; defaults to /alt.config.json + -r, --reference-file Path to reference file of source strings to be translated. This file can be in .js, .mjs, .json, or .jsonc formats and is presumed to be in the reference language specified by --reference-language; overrides any 'referenceFile' config setting + -o, --output-dir Output directory for localized files; overrides any 'outputDir' config setting -rl, --reference-language The reference file's language; overrides any 'referenceLanguage' config setting - -o, --output-dir Output directory for localized files -tl, --target-languages Comma-separated list of language codes; overrides any 'targetLanguages' config setting - -k, --keys Comma-separated list of keys to process - -R, --reference-exported-var-name For .js or .mjs reference files, this will be the exported variable, e.g. for 'export default = {...}' you'd use 'default' here, or 'data' for 'export const data = { ... }'. For .json or .jsonc reference files, this value is ignored. (default: "default") - -m, --app-context-message Description of your app to give context. Passed with each translation request; overrides any 'appContextMessage' config setting - -f, --force Force regeneration of all translations (default: false) + -k, --keys Comma-separated list of keys to process; if none are processed, all keys in the reference file will be processed + -R, --reference-exported-var-name For .js or .mjs reference files only, this will be the exported variable, e.g. for 'export default = {...}' you'd use 'default' here, or 'data' for 'export const data = { ... }'. For .json or .jsonc reference files, this value is ignored. (default: "default") + -m, --app-context-message Description of your app, to be passed along to the AI, per translation request; overrides any 'appContextMessage' config setting + -f, --force Force regeneration of all keys; if no '--keys' argument is specified, all keys will be processed (default: false) -rtw, --realtime-writes Write updates to disk immediately, rather than on shutdown (default: false) -y, --tty Use tty/simple renderer; useful for CI (default: false) -M, --model LLM model name to use; defaults are: for "anthropic": "claude-3-7-sonnet-20250219", for "google": "gemini-2.0-flash", for "openai": "gpt-4-turbo"; use the 'list-models' command to view all models @@ -222,28 +230,29 @@ Options: ``` ## Examples -### Example I -* Import from ``loc.js`` -* Look for exported variable ``data`` -* Translate with Claude -* Look for context keys starting with `_context:` -* Write output files to the current working directory +### Example I: ALT's localized display strings +The best example is probably the localization for ALT's own display strings. + +See [alt.config.js](alt.config.js), which contains a `config.js` file and localization files used for the tool's own display strings. + +Generated with `npm run localize-display-strings` + + +### Example II ```bash alt translate --reference-file loc.js - --reference-var-name data - --provider anthropic - --look-for-context-data - --context-prefix _context: +--reference-var-name data +--provider anthropic +--look-for-context-data +--context-prefix _context: ``` +* Imports reference strings from ``loc.js`` +* Looks for exported variable ``data`` (if `loc.js` has `export data = { ... } `) +* Translates with Claude +* Looks for context keys starting with `_context:` +* Writes output files to the current working directory -### Example II -* Import config from `./localization-config.json` -* Import from ``loc.js`` -* Look for exported ``default`` value -* Translate with ChatGPT -* Look for context keys ending with `[context]` -* Write to disk repeatedly, as changes are processed -* Write files to `./localization` +### Example III ```bash alt translate --config-file ./localization-config.json --reference-file loc.js @@ -252,26 +261,29 @@ alt translate --config-file ./localization-config.json --look-for-context-data --context-suffix "[context]" ``` +* Imports config from `./localization-config.json` +* Imports reference strings from ``loc.js`` +* Looks for exported ``default`` value +* Translates with ChatGPT +* Looks for context keys ending with `[context]` +* Writes to disk repeatedly, as changes are processed +* Writes files to `./localization` + ### Example III -* Overrides any config's languages -* Only process the specified strings ```bash alt translate --config-file config.json - --reference-file reference.js - --output-dir localization + --reference-file localization/reference/source.js + --output-dir localization/output --provider openai - --look-for-context-data - --context-suffix "[context]" --target-languages vi,aa --keys error-msg,title-hero,button-text-send ``` -### Example: ALT's localized display strings -See `/localization`, which contains a `config.js` file and localization files used for the tool's own display strings. - -Generated with `npm run localize-display-strings` +* Overrides any target languages specified in the config +* Only processes the specified keys (`error-msg`, etc.) ## Formatting If your reference values include formatting information like this: + ```javascript "error-msg": "The server returned an error: %%details%%" ``` @@ -279,7 +291,7 @@ or ```javascript "error-msg": "The server returned an error: {{details}}" ``` -...or whatever syntax your app may use, I've found the AI's consistently smart enough not to translate `%%details%%` or `{{details}}` into the target language, and will leave it untouched. +...or whatever syntax your app may use for formatting, the AI's consistently smart enough not to translate `%%details%%` or `{{details}}` into the target language, and will leave it untouched. Internally, there is currently nothing in the prompt about this. I've tested with `%%var%%` syntax, and it hasn't failed yet. @@ -305,6 +317,9 @@ NOTE: Translation will _not_ occur if ALT detects that the given value in the ta later, you can just delete that key/value pair from the given file. ## Additional notes +### Yes, you should commit your .localization.cache.json +If you do not do this, you'll lose important state and need to re-translate everything. + ### Delayed vs. realtime writes By default, ALT will not write to disk until the tool is shutting down (including SIGTERM – yes, `Ctrl+C` is safe). From 6227ed24603610ee6a31e03a37398681642392b9 Mon Sep 17 00:00:00 2001 From: Jonathan Lippincott Date: Fri, 18 Apr 2025 21:54:52 +0200 Subject: [PATCH 07/10] localization: updates --- localization/.localization.cache.json | 694 ++++++++++++++++++++------ localization/aa.json | 5 +- localization/af.json | 5 +- localization/agq.json | 5 +- localization/ak.json | 5 +- localization/am.json | 5 +- localization/ar.json | 5 +- localization/as.json | 5 +- localization/asa.json | 5 +- localization/ast.json | 5 +- localization/az.json | 5 +- localization/ba.json | 5 +- localization/bas.json | 5 +- localization/be.json | 5 +- localization/bem.json | 5 +- localization/bez.json | 5 +- localization/bg.json | 5 +- localization/bm.json | 5 +- localization/bn.json | 5 +- localization/bo.json | 5 +- localization/br.json | 5 +- localization/brx.json | 5 +- localization/bs.json | 5 +- localization/byn.json | 5 +- localization/ca.json | 5 +- localization/ccp.json | 5 +- localization/cd-RU.json | 5 +- localization/ceb.json | 5 +- localization/cgg.json | 5 +- localization/chr.json | 5 +- localization/co.json | 5 +- localization/config.json | 76 --- localization/cs.json | 5 +- localization/cu-RU.json | 5 +- localization/da.json | 5 +- localization/de-AT.json | 5 +- localization/de-CH.json | 5 +- localization/de-DE.json | 5 +- localization/dua.json | 5 +- localization/dv.json | 5 +- localization/dz.json | 5 +- localization/ebu.json | 5 +- localization/en.json | 5 +- localization/es-ES.json | 5 +- localization/es-MX.json | 5 +- localization/et.json | 5 +- localization/eu.json | 5 +- localization/fr-CA.json | 5 +- localization/fr-CH.json | 5 +- localization/fr-FR.json | 5 +- localization/gsw.json | 5 +- localization/hi.json | 5 +- localization/hr.json | 5 +- localization/hy.json | 5 +- localization/ja.json | 5 +- localization/km.json | 5 +- localization/ksf.json | 5 +- localization/ku.json | 5 +- localization/kw.json | 5 +- localization/my.json | 5 +- localization/nl.json | 5 +- localization/prs.json | 5 +- localization/reference.js | 3 + localization/ru.json | 5 +- localization/sq.json | 5 +- localization/swc.json | 5 +- localization/th.json | 5 +- localization/tzm-Latn-.json | 5 +- localization/uk.json | 5 +- localization/vi.json | 5 +- localization/zh-Hans.json | 5 +- localization/zh-Hant.json | 5 +- 72 files changed, 833 insertions(+), 285 deletions(-) delete mode 100644 localization/config.json diff --git a/localization/.localization.cache.json b/localization/.localization.cache.json index 51dfcb9..ef2a951 100644 --- a/localization/.localization.cache.json +++ b/localization/.localization.cache.json @@ -1,5 +1,5 @@ { - "referenceHash": "b7b330f8bddce9fcb4ec4b93ff5be6e481a2d6c0b67d3a45945f8e1b3a749855", + "referenceHash": "a1e7bd7114384291038d9555ba7ef798a4d7184fd0f3c1191bfd98efa3560d09", "referenceKeyHashes": { "aa": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -32,7 +32,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "af": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -65,7 +68,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "agq": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -98,7 +104,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ak": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -131,7 +140,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "am": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -164,7 +176,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ar": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -197,7 +212,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "as": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -230,7 +248,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "asa": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -263,7 +284,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ast": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -296,7 +320,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "az": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -329,7 +356,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ba": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -362,7 +392,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "bas": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -395,7 +428,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "be": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -428,7 +464,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "bem": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -461,7 +500,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "bez": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -494,7 +536,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "bg": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -527,7 +572,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "bm": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -560,7 +608,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "bn": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -593,7 +644,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "bo": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -626,7 +680,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "br": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -659,7 +716,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "brx": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -692,7 +752,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "bs": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -725,7 +788,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "byn": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -758,7 +824,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ca": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -791,7 +860,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ccp": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -824,7 +896,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "cd-RU": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -857,7 +932,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ceb": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -890,7 +968,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "cgg": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -923,7 +1004,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "chr": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -956,7 +1040,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "co": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -989,7 +1076,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "cs": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1022,7 +1112,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "cu-RU": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1055,7 +1148,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "da": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1088,7 +1184,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "de-AT": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1121,7 +1220,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "de-CH": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1154,7 +1256,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "de-DE": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1187,7 +1292,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "dua": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1220,7 +1328,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "dv": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1253,7 +1364,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "dz": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1286,7 +1400,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ebu": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1319,7 +1436,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "en": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1352,7 +1472,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "es-ES": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1385,7 +1508,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "es-MX": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1418,7 +1544,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "et": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1451,7 +1580,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "eu": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1484,7 +1616,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "fr-CA": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1517,7 +1652,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "fr-CH": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1550,7 +1688,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "fr-FR": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1583,7 +1724,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "gsw": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1616,7 +1760,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "hi": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1649,7 +1796,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "hr": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1682,7 +1832,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "hy": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1715,7 +1868,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ja": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1748,7 +1904,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ksf": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1781,7 +1940,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "km": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1814,7 +1976,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ku": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1847,7 +2012,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "kw": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1880,7 +2048,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "my": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1913,7 +2084,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "nl": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1946,7 +2120,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "ru": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -1979,7 +2156,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "prs": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -2012,7 +2192,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "sq": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -2045,7 +2228,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "swc": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -2078,7 +2264,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "th": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -2111,7 +2300,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "tzm-Latn-": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -2144,7 +2336,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "uk": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -2177,7 +2372,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "vi": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -2210,7 +2408,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "zh-Hans": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -2243,7 +2444,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "zh-Hant": { "msg-finished-with-errors": "785ba4b7e062d66506cf7bce6cb85dd9de9f753902a64dbd50e814cd0d1c9366", @@ -2276,7 +2480,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" }, "zh-TW": { "msg-nothing-to-do": "a288a348be3efa2a83543d173cad038d5768845fe202ea8e12ecfa17b04effb7", @@ -2328,7 +2535,10 @@ "error-no-reference-data-in-variable": "bff46dbd48f9caadd729bbc8d88ef9f0a4604411bfe8295ff1b61ee201e89654", "error-no-provider-specified": "d4405803e7ab56882efa326a74cc2da57fefc88072a2ea4b0f9f7f2690f13ad4", "error-copying-file-to-temp-dir": "9d66a4572c15488d07e9c88e32fbcad7e0c4af4830de52f8e864d84dcfb8789e", - "supported-providers": "c596893e4015fbd3c1fa895206ea596b9390c46f476cf3964031a2091e6bd5ca" + "supported-providers": "c596893e4015fbd3c1fa895206ea596b9390c46f476cf3964031a2091e6bd5ca", + "error-no-output-dir-specified": "41361ab788a71f5da6b07109e4ad73371851b3b2467d2ea394b9d5412b158bf5", + "error-dir-create-failed": "c4982f1da9180fe83407c85b41bf57ddcf73cc5bd273d5ebdc401f81ee7a009d", + "error-no-reference-file-specified": "c7a6f12d87cf964d896d983eae728512941118befb55521914233a4549a865a8" } }, "zh-TW": { @@ -2393,7 +2603,10 @@ "error-no-reference-data-in-variable": "342b4b0f71b736f30001947618a73f02440633b23b163888e64649eada194bd0", "error-no-provider-specified": "a08971353e130de6e23f55527c471c848b799be0c3811a0ab18264bdaae40b26", "error-copying-file-to-temp-dir": "30075652874328db9a356f9a0b20019341965cdc40377b68c4c29cbecdf24c25", - "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b" + "supported-providers": "7c7d3f15e91e4d4ac851fb75cce250871e5c1b671bc61c96af4779fb51d1324b", + "error-no-output-dir-specified": "5526582509d88fac11c642890ff159e79943cf15e7990c3b02e86d882b9b19fd", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "026fdab0a12ce892f3cdb54dff7d3dc3af4127475a1882d93a43408781af94db" } }, "aa": { @@ -2434,7 +2647,10 @@ "error-no-reference-data-in-variable": "f1d019493d778c3d601e3605c92929bdcadc62d731f8ddd5f16d08d62c9b5747", "error-no-provider-specified": "aac5b7f2997761ab04e1166b0fabef1561a5182ae467463c043f6eea1c7cdd70", "error-copying-file-to-temp-dir": "c5791ea9a7544787febdda224dccf5f0da8d5b74a8123bb3ac03ecccb8b99fc4", - "supported-providers": "83ddfde925d253c930d74bd461978f464715093c48f7d95b60fe8d2abe90f935" + "supported-providers": "83ddfde925d253c930d74bd461978f464715093c48f7d95b60fe8d2abe90f935", + "error-no-output-dir-specified": "c4e720b8069eda6cc69bcbd5e891155d5973d33628b94bcb1fd6e91186fd3f49", + "error-dir-create-failed": "485bd74dbe3aa639bbf8e6d37189a5b8b0326e219f5cfef21f19c47c01ebfd3f", + "error-no-reference-file-specified": "25b5c94adc816c53c51b87b130e3ee66f894e2714d40e444fb1a4fd7674c46ba" } }, "af": { @@ -2475,7 +2691,10 @@ "error-no-reference-data-in-variable": "405ad98afc826e6248c39df5d819021c1b5c4ccc46f0253feb5015794f2b1687", "error-no-provider-specified": "6eab1e6b3366e4a1c8943aa8bcb692835fc439c1a78bb06d200c21e970a72fb0", "error-copying-file-to-temp-dir": "071c2c7df54c137437010610ba719aabf04350cf0b3f53deeba3ff2d2eb4655e", - "supported-providers": "e771b8ba651d939c25c41bedfbb2d80f990710c8b898b4fdf6a1eca5ee4487fc" + "supported-providers": "e771b8ba651d939c25c41bedfbb2d80f990710c8b898b4fdf6a1eca5ee4487fc", + "error-no-output-dir-specified": "3771d44aee95c443b4b99e6b1f311db66468c44b3be6792ce25542a857007017", + "error-dir-create-failed": "4e219860a249ead899b78400426fbd986c928fead2f329782d810db2cedc7a78", + "error-no-reference-file-specified": "d8e50c974f887cb6f00c75ea6b2abf605a5c88eb861151d6e285a7eb37d18f63" } }, "agq": { @@ -2516,7 +2735,10 @@ "error-no-reference-data-in-variable": "af8170b59f0b05cface298c645036da3fdfc1037c8b32f94b02aaabb969f8259", "error-no-provider-specified": "5f166c03aacfc6dba75ae2a8e8bb7bc86badc1e0e5c9e1bc58b2397effe2802b", "error-copying-file-to-temp-dir": "42e2abbadda5a2854ec6e778fade026d303036540eb5586fc3ed9e6c0ff71e18", - "supported-providers": "9865995f5ee3f56bbb5e52e66234ff57f492e25d6a646c5f409e0ff42b3420dd" + "supported-providers": "9865995f5ee3f56bbb5e52e66234ff57f492e25d6a646c5f409e0ff42b3420dd", + "error-no-output-dir-specified": "3bafb6260af9ea6c4547bec7ec7166264121964cc045a12d661ed4afab4b0c67", + "error-dir-create-failed": "fae9ce22e4534ea1e7339c04bc0424f701d1d94bfbce7e3513df32b9d338e878", + "error-no-reference-file-specified": "938136122c31ec8b757b759ea4dc0ebc10d2faf842bd70053653a0a1d2b61de2" } }, "ak": { @@ -2557,7 +2779,10 @@ "error-no-reference-data-in-variable": "aadd53e8f494da9152023e5f8f2cf8bd9177135d588712539a7078c12a2e6527", "error-no-provider-specified": "e5ace9344728b07783d8b72d039eb5d4e3bb8280c3506b2187eee4d7aec9edca", "error-copying-file-to-temp-dir": "1e023ae979867815e173d0ea59d2055764915b03c18494cbd4b913c6feb1ffe1", - "supported-providers": "b27af5af1c0c59c18a59bf503560280d2d41d7014d6aecefc4b8aa6f0af79d64" + "supported-providers": "b27af5af1c0c59c18a59bf503560280d2d41d7014d6aecefc4b8aa6f0af79d64", + "error-no-output-dir-specified": "0ef08f7427f6770b839470d25ae2388fb24739583b22015e25328b3281b2e553", + "error-dir-create-failed": "4f59daa6973fde789727f3fa8f7428161429f6250e8062c4c49a6f104419c300", + "error-no-reference-file-specified": "6f0a6d1b2ad9bb5f2c088294367853e7b4029802679725eaa00e6703c138116a" } }, "am": { @@ -2598,7 +2823,10 @@ "error-no-reference-data-in-variable": "e6c14bd01a1abc5fc7f2e6f220d92d6e4d4b658e10f49f48ec8ff4d16d8a3c6b", "error-no-provider-specified": "45aed2625d9d59cde30d34742c341df0208cdd42ea9b0dc636499fc1e3cfd59e", "error-copying-file-to-temp-dir": "b157f537e8bbc0b1a7a64cdc57e3c21bb7050532ffff05b49e4b919d952bab15", - "supported-providers": "96836c2c5700839a0c1e9fd1d2b2d1e325d5959505574eae84d889b8a13b68e4" + "supported-providers": "96836c2c5700839a0c1e9fd1d2b2d1e325d5959505574eae84d889b8a13b68e4", + "error-no-output-dir-specified": "582aaea7412aa4f13fa2886412685e37aeea4fb5dc48f0767822f41bad4c524c", + "error-dir-create-failed": "cf3ea2dc769b2d46b9943122e7784a1fcfbd4f068419ee290a298c5f98066f8a", + "error-no-reference-file-specified": "94506cac422184e451b1eb7170adb622900fded32286b9ca727f2a4ea05c37e6" } }, "ar": { @@ -2639,7 +2867,10 @@ "error-no-reference-data-in-variable": "8f3251e9130009ccdc202e1d8b98f3bf98efd9efbcb18a1cd134dc268be8f36e", "error-no-provider-specified": "bea2eaaa4a6787165a3680196b72ff72ce99ad4ead1bcfb03021d02b9a65f455", "error-copying-file-to-temp-dir": "a97c4ae6b99c8885cdb1bd807c4151f457214a420ed45ef113125527cc5f3a31", - "supported-providers": "168576ba6cd7719d9a857a581e1cb418deddb216405e303aae8bcb6808a811a3" + "supported-providers": "168576ba6cd7719d9a857a581e1cb418deddb216405e303aae8bcb6808a811a3", + "error-no-output-dir-specified": "e32e6dc49ef27b44760445f266511015113da689506e20a778f0339283b77722", + "error-dir-create-failed": "ba1620bdc4c3b49a358ca73429d48efac9dd821a53e751adbc617a759c29c66a", + "error-no-reference-file-specified": "67960124c38c36c1a471fd066fbc5b326644c12992c731eee199339bdb5abe64" } }, "as": { @@ -2680,7 +2911,10 @@ "error-no-reference-data-in-variable": "197b56628693151b2adb87cf8a13cf723afaf4820098eadf17679ccaa999457c", "error-no-provider-specified": "321341682a6166ed81e18c4feb1b19790c70c720c791a5e1007789cf0f1ab29f", "error-copying-file-to-temp-dir": "ab869d72971f3ff57ad82d6ba6aa5bd54203235424309e213ca47311d28a6b93", - "supported-providers": "46202da7338f42b4f886328689eb2442e8adbbf8aaaf0c7b0947ea21ea00431b" + "supported-providers": "46202da7338f42b4f886328689eb2442e8adbbf8aaaf0c7b0947ea21ea00431b", + "error-no-output-dir-specified": "e418a82682fbe1c7299d90b77d424103b82eb1392cd04e2e4c57d927b3f076c1", + "error-dir-create-failed": "e6568b3f1237ee01bca3e451ca0be70dd196bc93709be6ffab2369f1bcea1763", + "error-no-reference-file-specified": "703f516851edc12b05fa80f03fdd76c398ecf30c9d1df3488a363c4a5380b3b5" } }, "asa": { @@ -2721,7 +2955,10 @@ "error-no-reference-data-in-variable": "39c12556b07731569721a23b6dad3d42382db083c804ef26229cf3d7394da6e9", "error-no-provider-specified": "4f6002e8649d4c813b535da283e3c5bc66146d06dcffc54840bf680399f99e9c", "error-copying-file-to-temp-dir": "e6b6421c38ee51a7bb7a1e98f69f187c2b20b9e49b6c677a2a26ffcef81a5cc2", - "supported-providers": "33ec4c0c1851bd54aa2540e5818e777767329669a831591a0e073d30f598b8d7" + "supported-providers": "33ec4c0c1851bd54aa2540e5818e777767329669a831591a0e073d30f598b8d7", + "error-no-output-dir-specified": "b8eabcdf48b7dff35162c815ae3dde0b65ada2c21c360fdaf5f99d4c0bcc426f", + "error-dir-create-failed": "67b996765dc55f37c7436f8520964a5e5299968e111c20d23a38997c53ff7924", + "error-no-reference-file-specified": "9867684d74ebc90f17a166d88f9c432870c2e342bac495dbde92f30e4775c2e4" } }, "ast": { @@ -2762,7 +2999,10 @@ "error-no-reference-data-in-variable": "f96854981691a1270579041551939cc95df8308543ecc24fbbe05837597ab780", "error-no-provider-specified": "60ff9a7e62fd1b8d6d537a07fe39b0eaee057b99dcd24b5b7bd0996f60c5a3cf", "error-copying-file-to-temp-dir": "39ad7894f08824003ad670110c98180a813df78e111ae9b15e1bdee198d3b36f", - "supported-providers": "c596893e4015fbd3c1fa895206ea596b9390c46f476cf3964031a2091e6bd5ca" + "supported-providers": "c596893e4015fbd3c1fa895206ea596b9390c46f476cf3964031a2091e6bd5ca", + "error-no-output-dir-specified": "c6bee6ab73f641da7e8bb7693ae41520c6a0932c23b67a1c6572c81e1604914d", + "error-dir-create-failed": "2207fca6eec626ebeaf288052136da08eafacd3bb9c3a40c180a77dd46881d04", + "error-no-reference-file-specified": "70270669815f1d290576d6402494b2552f34789a1cc267c36aa4fa3c6e5c1680" } }, "az": { @@ -2803,7 +3043,10 @@ "error-no-reference-data-in-variable": "4bf9b06aab765194b0ddb2d3c152cb43482a16ca0b9534b80d3f44b4452d0f6d", "error-no-provider-specified": "8bdbdfaddd1794d4edb55010f8e17623ce1c6aae9b94c1f5123b9ff2a1f33ed9", "error-copying-file-to-temp-dir": "fa9e5b0d101f4c5b3fffa8c7d0f18f84c3300ef4de1eeed0805f2e589864a66d", - "supported-providers": "e6e8dc11cf035fa8a8c2958e324f1df4133323ef88f908adeacf41d438cd245a" + "supported-providers": "e6e8dc11cf035fa8a8c2958e324f1df4133323ef88f908adeacf41d438cd245a", + "error-no-output-dir-specified": "51a0a43e3ae089be93c79c1c1dcb39fc5318f7cb4592fc880bd99aaab4c2c52f", + "error-dir-create-failed": "3a632d3d336b7785c047f051712d13fa0ce4625bdd7bcd315c217f90102a9de5", + "error-no-reference-file-specified": "e818ec51c9d129b3014e33b16c1558684920cd5045fd68dcfd578dc8959589bc" } }, "ba": { @@ -2844,7 +3087,10 @@ "error-no-reference-data-in-variable": "31a97b549e0d4bacb162ed894ff2e7ac9efd6c5046b907cc305592bcf4441aaf", "error-no-provider-specified": "fc0b34b47868c069baf5a02671e70e337f4d3e4cf4d4bd53f734f6870d338acd", "error-copying-file-to-temp-dir": "0527d7614fa9ef8fac7f0a5f97876ecabe13ab375397f10c83a9216a432b52d0", - "supported-providers": "29b33eff84e42c8ff67dde18b64118c8efb3dc2a756c89f87732628a4a572a46" + "supported-providers": "29b33eff84e42c8ff67dde18b64118c8efb3dc2a756c89f87732628a4a572a46", + "error-no-output-dir-specified": "12f43df6453755a5f7511894cdcd2c4e1a57a1df0433bfaae831d6be87bec8aa", + "error-dir-create-failed": "c266af3d0f6cf768be3243aa0a960a7dcab89a86b627dfab942928217b4b140c", + "error-no-reference-file-specified": "331fe1125e43f1a030c94b3ff6957d51cad6d6d0582426c78148c2f51d77e443" } }, "bas": { @@ -2885,7 +3131,10 @@ "error-no-reference-data-in-variable": "58206073e01633d7fc822e994db45cd6e778ff3c250b23c3a3b45fb2274c660a", "error-no-provider-specified": "d1b79c9efa51471b7b0a517017dce2b98c18b8d97b643e065355a768d0d068fb", "error-copying-file-to-temp-dir": "4a6d7d49ce3f6ebf5f6996c730f558e743af561a838a9ee8a4db8bb9e0512f3e", - "supported-providers": "1fe8a7ec341b1511e6e778925e4d98d9f9d125a6e4e5bc4d2b075030da7acb2a" + "supported-providers": "1fe8a7ec341b1511e6e778925e4d98d9f9d125a6e4e5bc4d2b075030da7acb2a", + "error-no-output-dir-specified": "450a75991d316c9f2f5677451177fda29d68497407facfb0b3afabf2ec6dd836", + "error-dir-create-failed": "719ff8a97385b8d6ca6e0ac277c97649743ea83af36ce90cdbea7538ee2e8c93", + "error-no-reference-file-specified": "15db54ceb1c1a20841ee1357053b132b6bc568281937c6c77cef09a8ec9895f8" } }, "be": { @@ -2926,7 +3175,10 @@ "error-no-reference-data-in-variable": "9b3c092df20cd075cb3882f5a46d2591b2b48c9c5693b297b92b3282ace6c17f", "error-no-provider-specified": "622bcf107e01bb71633f6771cae44e9bdae0faa8ea1ee4eef0948677045c2147", "error-copying-file-to-temp-dir": "da9393a66d09a92d6732651b02930261a1a80e76c87e14849f6245fada008f0a", - "supported-providers": "a4d1594e03d9776520572258e1761c8ac70a0943fa171a701ae8aeb42133750c" + "supported-providers": "a4d1594e03d9776520572258e1761c8ac70a0943fa171a701ae8aeb42133750c", + "error-no-output-dir-specified": "e494b8d531cfdd011d7dc9cb853bbcb816111a6d55fea0200f6dcd01a2572353", + "error-dir-create-failed": "43bbf0ab5ec358f23696388ef4cf6563677fd110bf0e9434a4e88e317090c410", + "error-no-reference-file-specified": "4fc8f4e400778d4c3e0cc2005150e32855ed962103786b0b8de92aa173f3e056" } }, "bem": { @@ -2967,7 +3219,10 @@ "error-no-reference-data-in-variable": "3f6ab353c24171e6a1814b130945107e2bf66dc14fda4077cd5213adfbdfc236", "error-no-provider-specified": "bf2ee6d7498d9e954a3def1ec72de180b60189101168059c2dd9ba1b62fde694", "error-copying-file-to-temp-dir": "2961a0d1f5befcfa49038f9953818f26e8305545086a43547a0e59c715d71dd6", - "supported-providers": "beed7a93e91bd69ab616b70090a30057861e94670c5d27c5d898dfec230b5e3e" + "supported-providers": "beed7a93e91bd69ab616b70090a30057861e94670c5d27c5d898dfec230b5e3e", + "error-no-output-dir-specified": "3fdcd2902d029ead85201086bfc27002c6a5ca73cce76deb357d6f539215e56b", + "error-dir-create-failed": "1c71f29269ac14f6491fd4dfaa06ddf97abb163a134f52c01aefed3c9a4aaf30", + "error-no-reference-file-specified": "0d276e97e43473d50c3d5f9ba30e424cea0548892475a3db71f4c025f7733828" } }, "bez": { @@ -3008,7 +3263,10 @@ "error-no-reference-data-in-variable": "98a6fe57be0b2f0d2f44655046e23d86862c0ee70369e50206af884cd6fbae5e", "error-no-provider-specified": "6051d3fae6cd80069373184ee561c62235628261d76734e166383c9fffdaf5f3", "error-copying-file-to-temp-dir": "281e4a921c0090ac21dd3979c55bf3719386030e790beb260d149c564afc9123", - "supported-providers": "5316d0f37421c64bcae9c94cf4286b7c63721d57f4237639dfa14e326830d2e6" + "supported-providers": "5316d0f37421c64bcae9c94cf4286b7c63721d57f4237639dfa14e326830d2e6", + "error-no-output-dir-specified": "5991ad8bafff053beee91d33098a97d1abe3e2c2bffa5e12dbe15315d36d42df", + "error-dir-create-failed": "8f5b2a2c60fcd3f3cec8beb91f939e0a450457e3bc8453a4e6333f4e5e9a37c2", + "error-no-reference-file-specified": "1ebec947b515606120f32f365573c9535a98ad239869fdf7e9be6fe130efe02c" } }, "bg": { @@ -3049,7 +3307,10 @@ "error-no-reference-data-in-variable": "1b6f44bf5d85d9a5c1783c23df3d7acc9d5602a8f8858dbd0adf6bcd0fcf7dfd", "error-no-provider-specified": "badd49e950880fb803eb872f46d4cdf5d5a93222fdd1bbe1f1b0cd92123a8f95", "error-copying-file-to-temp-dir": "bbbb5a3985513fb47d1422e6ae8bd3b3a4b30d8fb096e6a3e312d997a2501683", - "supported-providers": "215c6727a287519ef8fd11a43c18f7a58022a1b090d2a09da39d7909ef34558f" + "supported-providers": "215c6727a287519ef8fd11a43c18f7a58022a1b090d2a09da39d7909ef34558f", + "error-no-output-dir-specified": "2cc74aebce44fcff592b81fa986b29a6433f8d34e0d91f4d5adfbf5f14bdd2c6", + "error-dir-create-failed": "2d9fd1c721a4afd69206f94d3312f65e20995c01598878df422ea508324111a8", + "error-no-reference-file-specified": "9a5c1b921f83d40a83fd3cc8d66c88042376fc99d0365c7e9cb9e99dfec15531" } }, "bm": { @@ -3090,7 +3351,10 @@ "error-no-reference-data-in-variable": "c1ec45e158d240a08228a906185717e5c226e4913a4555e5c2f6e39f5650c261", "error-no-provider-specified": "5d4b6c78caf80eb920d7b3699670364a4137a76a50b57958d56f096a6223a0c3", "error-copying-file-to-temp-dir": "5942a5200f921912eb506787f207c312b5670eba874cd081c3e29647f927dce5", - "supported-providers": "efcdcd51fd8b96ad972acf3748f7f3a23c6844200a8f1f7d41b93d0b71c5a0fa" + "supported-providers": "efcdcd51fd8b96ad972acf3748f7f3a23c6844200a8f1f7d41b93d0b71c5a0fa", + "error-no-output-dir-specified": "814f1636c115fc5a5960996e63bba34c1c490d9ce77e00b5c18db20eb6cc163f", + "error-dir-create-failed": "8179da18d4abc0393f97c1fa53fcd6d669f80dffe1782d178d7fbfce05c3a7c7", + "error-no-reference-file-specified": "f9eda47baab9b78bde46ea7bbd4b82f7ed9e3434f2bd6b9b946ef7c082e63d0d" } }, "bn": { @@ -3131,7 +3395,10 @@ "error-no-reference-data-in-variable": "09543dc49deea0de407274aa7c11f7577c218929ecf459fb0b91350cc0ced99a", "error-no-provider-specified": "5b7c4f05de910430c89490cf9077629919f8675cd4a985ce7269abf61aff82f2", "error-copying-file-to-temp-dir": "797f10de33412b70fa79bb59fcbf2213f0fcfbf4bbad8a5ce829ecad817267df", - "supported-providers": "ba6298181705304bf364e3e9e88ecac647e2587e192de128551c441f775a2b34" + "supported-providers": "ba6298181705304bf364e3e9e88ecac647e2587e192de128551c441f775a2b34", + "error-no-output-dir-specified": "0da8e77bd7fe2c61f19d110180679a27ab6351f996614eb73f647320a5e86952", + "error-dir-create-failed": "9c6d232cb08255d6c4a6b686cb98350ecf220819f2e912b4e0455f54b3f808a5", + "error-no-reference-file-specified": "599c67d5bc81673db166b38fa7bd1bb1a822ecc5312afe6caf95e0ff53551e7e" } }, "bo": { @@ -3172,7 +3439,10 @@ "error-no-reference-data-in-variable": "b7eecac8ec73732c291a12f6cba5239f4fe3d82403b2c3dc75f6b58ef871ee0a", "error-no-provider-specified": "5857c40f4cb80c4ab298c611f4c99974f9182b49ead84f8d7f642c3219863442", "error-copying-file-to-temp-dir": "e5556cbcc4cbabcffc9a0a003bd5b53282c53b34b30294680d11b614bfca5bf5", - "supported-providers": "984bf0cb71ae734b470ddf76965e8ceec8944393a54f38d183a357655247a32c" + "supported-providers": "984bf0cb71ae734b470ddf76965e8ceec8944393a54f38d183a357655247a32c", + "error-no-output-dir-specified": "0a2ec905ac76614e5934d838ff90a81aabe8ec98404f1f11059ff14eb0bdd9cc", + "error-dir-create-failed": "1c60e487c10f91c0db0349282f55e5204d692614d1856226978a5e8cd46f00c2", + "error-no-reference-file-specified": "a2ffbb424e8d16f799900995f92234ea40398e0f41785bb9bff08a5f8d691daa" } }, "br": { @@ -3213,7 +3483,10 @@ "error-no-reference-data-in-variable": "294b6efffd23798eb2fce757e391ae3385750c44eb68ee60b049500a9ffcf7a2", "error-no-provider-specified": "1bd1d853b257ff8bb801fc12661410c7394dc5709a282155fc7c74ad997eb1c9", "error-copying-file-to-temp-dir": "cea665fd1e0ad9a9ad65b7df02559885c6daba52b9495e4e9a4295b69163bc5f", - "supported-providers": "8181f7c25139ba2818c4ad39090019630c29e0b6d0eebdf8bfdc86a896fcb8e2" + "supported-providers": "8181f7c25139ba2818c4ad39090019630c29e0b6d0eebdf8bfdc86a896fcb8e2", + "error-no-output-dir-specified": "cba08986c2549ce32f335167a917d58125ac0cee228e79bf163f9882256da1aa", + "error-dir-create-failed": "d7fb521f1ae4b5a297a24b64b5f87a5c51bff5950180ec6202869b869472b5b5", + "error-no-reference-file-specified": "09fca9fe13863b27a255c6b62b541a808e8d3e82a746268d846e0e47b64402e3" } }, "brx": { @@ -3254,7 +3527,10 @@ "error-no-reference-data-in-variable": "7f9459901a9aea7d93ab03228cde5c73a13e3ae5c5ba0ba04561f1362595885b", "error-no-provider-specified": "73d7c8cc47c9d7d47ce89d3fa35dcd35f44183814dcf186f65fbd201d32815ea", "error-copying-file-to-temp-dir": "956000b14f0ef2eda878a592d6a771e9f2a446c8c30aa9524576a5aab171f508", - "supported-providers": "2fc56757e21bda320e38733bbabbef5dfb42e559c343436a04fb61c5fe8dcf17" + "supported-providers": "2fc56757e21bda320e38733bbabbef5dfb42e559c343436a04fb61c5fe8dcf17", + "error-no-output-dir-specified": "a2b83058ff1e15d24057a5c7909fd154939b321682dc36f7dc87676dfa1438cc", + "error-dir-create-failed": "3a257822150152faa23ce1749f58085764fb9184eabe2ebb5851366fe2b5a462", + "error-no-reference-file-specified": "ce93cf8f8b224e6a311c28918145d6e6be47fda8ab252611f5fd81e2d0b51793" } }, "bs": { @@ -3295,7 +3571,10 @@ "error-no-reference-data-in-variable": "31a97b549e0d4bacb162ed894ff2e7ac9efd6c5046b907cc305592bcf4441aaf", "error-no-provider-specified": "58e8eddfc7f0bbba69b0f0a9b8a0260fd7568ee2ff48e0215fcaad8cacfac388", "error-copying-file-to-temp-dir": "0527d7614fa9ef8fac7f0a5f97876ecabe13ab375397f10c83a9216a432b52d0", - "supported-providers": "29b33eff84e42c8ff67dde18b64118c8efb3dc2a756c89f87732628a4a572a46" + "supported-providers": "29b33eff84e42c8ff67dde18b64118c8efb3dc2a756c89f87732628a4a572a46", + "error-no-output-dir-specified": "b8b307e7f5be5c2eca5b5151ea9676b9b352c357b0f676f6c83d7ee244186bee", + "error-dir-create-failed": "f3d69f33e1e0a908e914346d60261a7f87eee565b63202f65c885047851ec6ee", + "error-no-reference-file-specified": "c8fb1702b64891dfa162b73566d83ee2aa4ce9ad032abdbcc4c436a27f625d5d" } }, "byn": { @@ -3336,7 +3615,10 @@ "error-no-reference-data-in-variable": "82474264c8001d6cb18e63c8bcaf772fd95eb7728a3b9b4752b49ac72677f7f9", "error-no-provider-specified": "db7ccf06b0c76fc256871be0ddcded47379d22b2aa3dbcf870e3b4d4977f3d79", "error-copying-file-to-temp-dir": "95daa7148df3083d7335be6fa0a6a9e205a31a44ffb27702eb0acd5049b9a147", - "supported-providers": "48f96908209314391b1e0f05e565c09d9ab09e4d8762f3f965c2b7bb27bbc6ba" + "supported-providers": "48f96908209314391b1e0f05e565c09d9ab09e4d8762f3f965c2b7bb27bbc6ba", + "error-no-output-dir-specified": "48d01b4b10bd0edf7cce54328e322fd294c33b4ce3d8ce026606115759a79348", + "error-dir-create-failed": "70fb88429959fcbfd5cd6203fd10b50d06aeb08d65329ffe74f089996924bf50", + "error-no-reference-file-specified": "254b4e66c7d37625a0a9a7b4a7b9a6925da8bd6b65f7fba9fbffc635357ca4a0" } }, "ca": { @@ -3377,7 +3659,10 @@ "error-no-reference-data-in-variable": "5a21ec5f5b4df709b4aa7b163b844e411aa9032ea4e640c2fd6f1cdebdb42d2b", "error-no-provider-specified": "eefc37280ca30b0ac5747e9d965127acb1c3f65ed14096e10df6bb12d64bfb72", "error-copying-file-to-temp-dir": "38dd39e8f10873cb7cea8289a06a776584c27e4832e9269589afa202703f94ff", - "supported-providers": "9c470e63878f91e06160dad605c0d8d8816b7b430b27ca35ab11131e56af6c5b" + "supported-providers": "9c470e63878f91e06160dad605c0d8d8816b7b430b27ca35ab11131e56af6c5b", + "error-no-output-dir-specified": "18e3f530d85fe9d3a25b4f399735bf7cb4445206cf9a9f5ead481d19b7124832", + "error-dir-create-failed": "4126ec78b7fe6cbda7008dfd2a2a693e06183fb297415ff82d32d3ebc13dca73", + "error-no-reference-file-specified": "9bd85eb3016c423ed97d823988e92cbece83f5e7638ad623aab36258f1cfb5a7" } }, "ccp": { @@ -3418,7 +3703,10 @@ "error-no-reference-data-in-variable": "fc55b586b243b28408fad23ac6c86482cb9c426f345df9487b0308b4fe3f8a27", "error-no-provider-specified": "07ab74645b8a53f1bec7d604fe77e6b47ebd47783cd7a7b303380daf585d9159", "error-copying-file-to-temp-dir": "de2f4d0179531ef77fa01ad2273ee0db85ebe05fba8df84224a78d8a9b751380", - "supported-providers": "8a72b4601bb38dd1012b0de117677f937141cc1d587f7b75e089c371f5147c4f" + "supported-providers": "8a72b4601bb38dd1012b0de117677f937141cc1d587f7b75e089c371f5147c4f", + "error-no-output-dir-specified": "6296b9a4e317a36dba09b02f69e445e2269f54aca9edc6a7fe4f82628ca0a57a", + "error-dir-create-failed": "93d8d5b4abde132fb901c3afce1fa15c4819a96862bf69fffdaf273c41a0d3b5", + "error-no-reference-file-specified": "4cece1d444155cefeb9e8b1077634b850f8db64f79dae583fecdff671969b569" } }, "cd-RU": { @@ -3459,7 +3747,10 @@ "error-no-reference-data-in-variable": "9d66f38b5016391defd5802199a60d50df8220eb4eea9f4045f4e6a29fd258f5", "error-no-provider-specified": "b8602bf96ded0d46b3f89ba87cd9bec50b2bf60698bfe90fbf09eff31835e123", "error-copying-file-to-temp-dir": "1b7f5fdabe27c22c0092fe87641fb583d24b8458bb78b6b152be8609ccb82551", - "supported-providers": "6e2ad8029c7e326e1cdb5f48dc061cf106b645309cc52fb94ded5c80c25cfcd0" + "supported-providers": "6e2ad8029c7e326e1cdb5f48dc061cf106b645309cc52fb94ded5c80c25cfcd0", + "error-no-output-dir-specified": "e1dcdf80a6974d4223ab7e1302010f2a175f97da33f3489a871fe95e261bccbd", + "error-dir-create-failed": "0f0fca64e164983dabb685fe31b3db3579cb719b5490118657c29bb8b93ceed4", + "error-no-reference-file-specified": "65373dca8b428a0452c77f4560ef16d2a5ce2c86b69394560f108fdae422dd17" } }, "ceb": { @@ -3500,7 +3791,10 @@ "error-no-reference-data-in-variable": "e9ff42549224238105799610245337a4e677ea4cecfee1cbf13cc7c218490bb4", "error-no-provider-specified": "b50725ba335bdba928b3a78cb7617eadee87fc7eb7721214c93eab93a9c53c3f", "error-copying-file-to-temp-dir": "7c3b291030759101e54fc5e984dd928b373fe78a1ed8bb934244f2f0e6a3a30c", - "supported-providers": "df970806a0575e8ed915bf8b59d4d33ad07ffe9e1b60dbf5dc133b9dc70cb8b6" + "supported-providers": "df970806a0575e8ed915bf8b59d4d33ad07ffe9e1b60dbf5dc133b9dc70cb8b6", + "error-no-output-dir-specified": "1d9d5c45f116b254b66d7d59f7b0ab44d1ba7139fc98c6e5a79c83cc56643a4c", + "error-dir-create-failed": "1fe65f897727b2bae8cb917c8507411140e679c4e19b05c2935c92344942e508", + "error-no-reference-file-specified": "b01286ec622e40d00a7bf88193702e12c3b28a4cbb3898b3c4ddd12ffe18f37d" } }, "cgg": { @@ -3541,7 +3835,10 @@ "error-no-reference-data-in-variable": "cae1fe99f9c16876173ce6276780c5d4d17ba2959a8a6ff3b9e0b9c17aafdfbb", "error-no-provider-specified": "64619d125d19fc22c45e74222b8b352f677a67643c4dad4dbfe309908c2bc84c", "error-copying-file-to-temp-dir": "ca328d3f6f0ab1aed9dba3d1f72a821296916e100c28cb74d7bbffdcef157a9a", - "supported-providers": "279b86727c1a68119d35f00aaadb1aa987b6f8951145706344c9265060ef953a" + "supported-providers": "279b86727c1a68119d35f00aaadb1aa987b6f8951145706344c9265060ef953a", + "error-no-output-dir-specified": "7978e57d42800475c26f5c618342a032f50e7c4765051df82b78ed6360471afb", + "error-dir-create-failed": "86835b27eeda9ba15425831e149f032e796ddf4e9474f5029113db56970e90e3", + "error-no-reference-file-specified": "7d3e439b449bd7e9359b0e7668d9e4a21ab6b1f529adf333d89663f1d5e678c7" } }, "chr": { @@ -3582,7 +3879,10 @@ "error-no-reference-data-in-variable": "ecd650bcf91bd113d16c31a06f2c3b290ca89a2ea402d606576642fb4b6b8923", "error-no-provider-specified": "f26751d34fdfaa06bab47902b355e5e84f0e29f4e969c3c758f8af4e326874e5", "error-copying-file-to-temp-dir": "ff7f4c5b79ea30449a47c5a0ecf3a29e4844bd7ad2f96f5be2f9c5696c03aafd", - "supported-providers": "ef2d6d3b4ed651cf1572d2d0873ac27e5d4ed3b3b5241fb791c53d1fc37194f8" + "supported-providers": "ef2d6d3b4ed651cf1572d2d0873ac27e5d4ed3b3b5241fb791c53d1fc37194f8", + "error-no-output-dir-specified": "047f27226fded944695b125243a099249989d8f2f0edaff5217531c64f5c35a0", + "error-dir-create-failed": "d201b42fe62423798abd83f9cab44e8118c9592cd581976d62e313dbb8c95567", + "error-no-reference-file-specified": "a3a38be6ab067c864c6bae7d9c14a2c15e383b647c193764d01d072c496dd86e" } }, "co": { @@ -3623,7 +3923,10 @@ "error-no-reference-data-in-variable": "2b1ee510cddcd6caea50135f52cab1d6a55453b91735b893cf7313d464275620", "error-no-provider-specified": "c509b2f1dd6b0bb5cc0a67c778171ec965218a8bebb95d45a8ee410259c9effa", "error-copying-file-to-temp-dir": "03570cbe7d42dc82d54118ec824ed904cfe7de4f3b3635a3f99f7f8d2a8385f3", - "supported-providers": "3e1334f93ccc4c919fa1d190819b8bffaca6df808cb276e256622ac3b1087dea" + "supported-providers": "3e1334f93ccc4c919fa1d190819b8bffaca6df808cb276e256622ac3b1087dea", + "error-no-output-dir-specified": "8ecb875cc6bd34f921e1ff4d41556852b281550e42674a2a0763bcd2354dcad5", + "error-dir-create-failed": "da55912fe1af6d8a103a045d188ee30df31209c38385f70f092115e5682a9aff", + "error-no-reference-file-specified": "22f2eba1802dec227848b7ded08f75193ed95a0ab25dbeb0ad6e8eca4ff8da35" } }, "cs": { @@ -3664,7 +3967,10 @@ "error-no-reference-data-in-variable": "407104198aeff9d17ccf0a4eb5e0772378be375e039fa692445c1c5c399b4d04", "error-no-provider-specified": "46720826970ac7567beabea170d8f144c39bace7ea4768765a0e042a05fe95a5", "error-copying-file-to-temp-dir": "dd162566ced6d32452bf29385edec92db84fb59b29319d6eb7c67fd0446e355d", - "supported-providers": "b8627f8a2b2f280b94e45f787b8ddcfc0384ab92d99893353bd8a812935b6a47" + "supported-providers": "b8627f8a2b2f280b94e45f787b8ddcfc0384ab92d99893353bd8a812935b6a47", + "error-no-output-dir-specified": "2e70b9d7633b20878fc2aa634de7cc2d7cd5332fda1c500b2b03c66212669955", + "error-dir-create-failed": "6321acba3bba623f8b6cb4a4f08dce7d65b7b33220506006abf52313ebeecbb1", + "error-no-reference-file-specified": "0b6910cf74c32103f7faa89198597388bbf55c5320848c38ce19bcfa34091ea6" } }, "cu-RU": { @@ -3705,7 +4011,10 @@ "error-no-reference-data-in-variable": "2fedd420a161ae530f6d34d7c4f68e183c9ddc89c3931bb0eb8776b391a4d66e", "error-no-provider-specified": "22b66379ad601f2167360011ff72785d92776a263f93445d331961948984f80d", "error-copying-file-to-temp-dir": "7147ad1fdc7036cb56cbde2bf051e25dea6ba7c02b1be285a65c6153c811237d", - "supported-providers": "52d692708216583025812121b85405fe8920bb0cd7fbfe278181821c0891d081" + "supported-providers": "52d692708216583025812121b85405fe8920bb0cd7fbfe278181821c0891d081", + "error-no-output-dir-specified": "5b55d1d6116937880da22a97fb2907d80997e63d2fdc5217dff07830b2163517", + "error-dir-create-failed": "a39bb0f6fd178db94901f9588d8ae36c4514f569b6fa1131b4a3f06a1a37bf4c", + "error-no-reference-file-specified": "7b0b96c157516b00cb873ec1eae4c56630d561ca4adf4161dd77bc167caf0180" } }, "da": { @@ -3746,7 +4055,10 @@ "error-no-reference-data-in-variable": "ce4f4d243832652d09264877b70748c94aefc17a29ff9410f01f2a2cef6233cb", "error-no-provider-specified": "b3c2cca8589677d384efa7e2bf9cf89f2fdc3f8aed2496faa937b5005f5a53c1", "error-copying-file-to-temp-dir": "cd4caf946065adb76b35f770b4fd7b3c1573cc96208b396bffc254914883de03", - "supported-providers": "c26de00b3a13ef9da9d0e207e5095c1c92d0ac4593fca6c89dc4493bcf4fb5c2" + "supported-providers": "c26de00b3a13ef9da9d0e207e5095c1c92d0ac4593fca6c89dc4493bcf4fb5c2", + "error-no-output-dir-specified": "ae6decd52514776c438088fd241fc25dd9ae117ee78584a69bd78ba4afd556d4", + "error-dir-create-failed": "9356e43e218b075c2f6deb35f8a05701c327da249b518818766e5577172a594d", + "error-no-reference-file-specified": "cc67f35e92ff9a88413cad024ade44f7e994626a2bf90ed2ef6928794f7efa86" } }, "de-AT": { @@ -3787,7 +4099,10 @@ "error-no-reference-data-in-variable": "aefcefcc1a4a7d9fc4465a4f4f518b1211e062313d15fd1a823cc9466fab0b78", "error-no-provider-specified": "3d72e9ea00ca2a2d21cb0563680fdb1d3654596287fe772375da8e615ba8c89c", "error-copying-file-to-temp-dir": "8902cb5e10e6ffcd17b263067a141067f765ac7861f29ccec4479fc383e17fa1", - "supported-providers": "024630924678a750422fc280e640ad07f257a41a4420e297d476de53b4537d6e" + "supported-providers": "024630924678a750422fc280e640ad07f257a41a4420e297d476de53b4537d6e", + "error-no-output-dir-specified": "412f06a277842fe5ce4134bde15f4b6bda7a2273dd678343bb54c0600ed89195", + "error-dir-create-failed": "f9ecae67a4653f204851b2fd11a960356f6ed228aaba4b76795a3af7df6a9e2a", + "error-no-reference-file-specified": "80e2aecfbde9e55132fc5407dde5a064b76395e6b089e0afa9fead480eaeab55" } }, "de-CH": { @@ -3828,7 +4143,10 @@ "error-no-reference-data-in-variable": "aefcefcc1a4a7d9fc4465a4f4f518b1211e062313d15fd1a823cc9466fab0b78", "error-no-provider-specified": "3d72e9ea00ca2a2d21cb0563680fdb1d3654596287fe772375da8e615ba8c89c", "error-copying-file-to-temp-dir": "8902cb5e10e6ffcd17b263067a141067f765ac7861f29ccec4479fc383e17fa1", - "supported-providers": "024630924678a750422fc280e640ad07f257a41a4420e297d476de53b4537d6e" + "supported-providers": "024630924678a750422fc280e640ad07f257a41a4420e297d476de53b4537d6e", + "error-no-output-dir-specified": "90d1ee490882826d3c5de960626875240ee7e143c91d827be49181fe31111999", + "error-dir-create-failed": "4a2f6fe2ee5ac5e5eac8ce7eb6bb89b2b07eacaa2ed6b7e487765cb3a366db02", + "error-no-reference-file-specified": "c534c3d1e9c3c7ba6b1b37d4d177945163447ac17cb9fbf45c0f0b1db8cf1e53" } }, "de-DE": { @@ -3869,7 +4187,10 @@ "error-no-reference-data-in-variable": "aefcefcc1a4a7d9fc4465a4f4f518b1211e062313d15fd1a823cc9466fab0b78", "error-no-provider-specified": "3d72e9ea00ca2a2d21cb0563680fdb1d3654596287fe772375da8e615ba8c89c", "error-copying-file-to-temp-dir": "8902cb5e10e6ffcd17b263067a141067f765ac7861f29ccec4479fc383e17fa1", - "supported-providers": "024630924678a750422fc280e640ad07f257a41a4420e297d476de53b4537d6e" + "supported-providers": "024630924678a750422fc280e640ad07f257a41a4420e297d476de53b4537d6e", + "error-no-output-dir-specified": "90d1ee490882826d3c5de960626875240ee7e143c91d827be49181fe31111999", + "error-dir-create-failed": "f9ecae67a4653f204851b2fd11a960356f6ed228aaba4b76795a3af7df6a9e2a", + "error-no-reference-file-specified": "213b0b35b9814633073648b263c525cb9d93382810a768119fb798e407a26416" } }, "dua": { @@ -3910,7 +4231,10 @@ "error-no-reference-data-in-variable": "66291b0ac4881ef02c8a518daa09b60e243605e5f7bdbf2238af7c4c75bf7f21", "error-no-provider-specified": "3647009600ab3f90efcac566641ada03f0d8954a72685d05e8ada16e2ef560f8", "error-copying-file-to-temp-dir": "92c826b55f02cd99ef19e74dc39a9da66784604ec1f8a38bce22c4f153edfd82", - "supported-providers": "b0b34270091b29f1d6925acc2082df5a1b56e0540365679fa8690acec67e5a3e" + "supported-providers": "b0b34270091b29f1d6925acc2082df5a1b56e0540365679fa8690acec67e5a3e", + "error-no-output-dir-specified": "390b3f8061d0465a99b78168a52e32f7da704d99fb0a067e67a787ff9b777700", + "error-dir-create-failed": "2ccdeab7f82d6d7a9376db927744e84f93a59eaf9297f2b6ddb9a8a2ee78ac48", + "error-no-reference-file-specified": "99857416b66fe7623e9e0bf54cd602fdcc939093d7a5d1f054230b4462a8480c" } }, "dv": { @@ -3951,7 +4275,10 @@ "error-no-reference-data-in-variable": "a1eb34551fe57d0648f30c472098a50df0269d8e11e76ed51d241093601ba24e", "error-no-provider-specified": "c1fb2cf0a54a8e4a21e2dc05d0007947aded41c4203b50a5acb3180a5d1faa42", "error-copying-file-to-temp-dir": "ec25b77d67919fe1c9fcf20ec0c665a7f2fcaa68f9c319380860a58bf05a9f03", - "supported-providers": "afc482076808d8609931dac71b91c8cb61bd458aec61fcc4283a33d070ad35c9" + "supported-providers": "afc482076808d8609931dac71b91c8cb61bd458aec61fcc4283a33d070ad35c9", + "error-no-output-dir-specified": "359ae188c8b8a508f6359bd6b24f3f2cf79bcaea21f8ad8ba7479535e69fc66c", + "error-dir-create-failed": "01fede70b8c2800ae02253c78941b27e830ae131667d6cbb7c744d606f229937", + "error-no-reference-file-specified": "8c0fcd27859d3acc5e369cad4ad68c63288b6fefb11b79c66dad5d5035be2ae9" } }, "dz": { @@ -3992,7 +4319,10 @@ "error-no-reference-data-in-variable": "40a734ad9f415519721e552e2c3ff457057b6c4c520019a639a372ad70a4ab9f", "error-no-provider-specified": "facfcd9f48377e2de80dfb51669369fc20f5d1f87c58c2907ab4aeaf0df8256b", "error-copying-file-to-temp-dir": "bdc76ed572009e86b7b4aa05f16320ba50528f76e1c84cbc6bac792dcacdd612", - "supported-providers": "984bf0cb71ae734b470ddf76965e8ceec8944393a54f38d183a357655247a32c" + "supported-providers": "984bf0cb71ae734b470ddf76965e8ceec8944393a54f38d183a357655247a32c", + "error-no-output-dir-specified": "07ec5829f0c047781c7b7621f705d336f23d48f763e093e9c1807734efd4bcbb", + "error-dir-create-failed": "03f83e5391f8960720aafb9a4f7122ddec0cbcd37b9e499a70cd8e7414e38a7b", + "error-no-reference-file-specified": "2a736a19f87b94b2ae82cf66ffe9fdb0f6e85bf625c359d66e89b595dfd8b79a" } }, "ebu": { @@ -4033,7 +4363,10 @@ "error-no-reference-data-in-variable": "d5ebfcc61ef4e0f4557ae85b3c531ac732c69cc004bceb930009c190e0a9c089", "error-no-provider-specified": "8c79dc4f3ac728e6fd660fbedcc6e935ba7d49896aeb98d4863831bc081bdc5a", "error-copying-file-to-temp-dir": "c4e2ba7ad5d2c766288ff67edbc896249066e9f3aed6ba032d1978a14a77722a", - "supported-providers": "b27bbb6efd7cafaeb1dbde1ac22283ba1b3ac32d321bf6cef63ac6c899e545b9" + "supported-providers": "b27bbb6efd7cafaeb1dbde1ac22283ba1b3ac32d321bf6cef63ac6c899e545b9", + "error-no-output-dir-specified": "d649d84fb1ab2138c6265bbb35d0ea6467f87199be5e09281dc5f242c7e9daa3", + "error-dir-create-failed": "d77f7dc88a1c872008f9d2aa873fc2dcd41c19315fddac88a629311e85f05985", + "error-no-reference-file-specified": "07525d1aebebb813ca04662852d0f9631f4a01caa175561e8f3b54c6f458b77c" } }, "es-ES": { @@ -4074,7 +4407,10 @@ "error-no-reference-data-in-variable": "bff46dbd48f9caadd729bbc8d88ef9f0a4604411bfe8295ff1b61ee201e89654", "error-no-provider-specified": "649a8dcd62631b638d9e933eecedd8eea835db8a80062bdd78ea95a3ee9474c9", "error-copying-file-to-temp-dir": "9d66a4572c15488d07e9c88e32fbcad7e0c4af4830de52f8e864d84dcfb8789e", - "supported-providers": "c596893e4015fbd3c1fa895206ea596b9390c46f476cf3964031a2091e6bd5ca" + "supported-providers": "c596893e4015fbd3c1fa895206ea596b9390c46f476cf3964031a2091e6bd5ca", + "error-no-output-dir-specified": "56a54dbe8b33987ec26fd8b9e7051f2c461ca96954654b9f8c10f630ae2a8eca", + "error-dir-create-failed": "be47e7d370123b16bada2afe390ba08e54b51d3556c36920bc3acbd10560748f", + "error-no-reference-file-specified": "47bb3f7c40b357a34bead9a49340306f87a02872ae618a12b86201c2c0bf7833" } }, "et": { @@ -4115,7 +4451,10 @@ "error-no-reference-data-in-variable": "aa2eec6a99fdc44c1155f53807c9f2fa09f36175f463bcfb6647f0bcd3ade31b", "error-no-provider-specified": "46ce2e10092d0c5e186e95704a1cd0e118775d28956cc099428b96815957acb3", "error-copying-file-to-temp-dir": "3dea6b78def8fa3834073b34d92652df0fec7c1d9afd4a52d06c6d62950e3f10", - "supported-providers": "493ad61f4a1953f911f422f55b1c60808c6a79c746b47b5090484f677a6d1354" + "supported-providers": "493ad61f4a1953f911f422f55b1c60808c6a79c746b47b5090484f677a6d1354", + "error-no-output-dir-specified": "57509bdca845f1185599fa53686ef5ee1614bde46bedbc1b3835ab69966a40d0", + "error-dir-create-failed": "9d1044c8f1f8696e1199220631d52a27204c2d412f1975d49e3260ce2649bbaa", + "error-no-reference-file-specified": "9987281087dcfc0c51b4b324d0a0b0397ba64a488dcb1b4f0348dde1a612d5cf" } }, "eu": { @@ -4156,7 +4495,10 @@ "error-no-reference-data-in-variable": "4e2abfbaaeb9c25744b26cf6f9f3eaa4d11e596d965e168de818e43a3508c388", "error-no-provider-specified": "d1b79c9efa51471b7b0a517017dce2b98c18b8d97b643e065355a768d0d068fb", "error-copying-file-to-temp-dir": "fa6b3af4aefcc55c21b56740d9b144d16c5d4b915496075507719f2d48f7b11b", - "supported-providers": "ddf9a98a5858c6113fb3290578d9fbb02e90d89176cf516f55db4b49af8ea290" + "supported-providers": "ddf9a98a5858c6113fb3290578d9fbb02e90d89176cf516f55db4b49af8ea290", + "error-no-output-dir-specified": "bdd6e06fa390bc31a725c7580aea8f81402942cb13a38159b677c8764c22e34c", + "error-dir-create-failed": "aa723d141e63fccdc49e795c3105b9cad83cc54bba07e3db32698acf90a82cca", + "error-no-reference-file-specified": "47b48d45d68d124206848e41692a5fca05c294bd78ed0b24752fcab8be194e00" } }, "fr-CA": { @@ -4197,7 +4539,10 @@ "error-no-reference-data-in-variable": "0ca53b2eeff67496590a7dc5bc85b5fb0896357bf057872392549ecf976725e3", "error-no-provider-specified": "64e2211af504bd76cfd365ee68e557a20804208bf06cc2132b93f8976ea341ef", "error-copying-file-to-temp-dir": "337b0a675e7d7e15494716b61c43436c951910ae2d71c6dc1eb98f0819bdb0df", - "supported-providers": "6fb177cab5db6585b8b8a391001773bfe7fe4cca55ba4838b5c48591493df027" + "supported-providers": "6fb177cab5db6585b8b8a391001773bfe7fe4cca55ba4838b5c48591493df027", + "error-no-output-dir-specified": "7e961b6f4ea5bf7658e8996b5820ccef1b08c73bafa14943cd4a82a4148c64c6", + "error-dir-create-failed": "565fc388ab3016c646ba7f968d8fbd74272389e142da7d76bd8d650fa3ee1a8b", + "error-no-reference-file-specified": "c03189f592c837d43afcff2eac577ccb949842e153bc4f41e82c9eeb0d6bccfd" } }, "fr-CH": { @@ -4238,7 +4583,10 @@ "error-no-reference-data-in-variable": "0ca53b2eeff67496590a7dc5bc85b5fb0896357bf057872392549ecf976725e3", "error-no-provider-specified": "64e2211af504bd76cfd365ee68e557a20804208bf06cc2132b93f8976ea341ef", "error-copying-file-to-temp-dir": "f56cc3e297c7689d944512ab962c736ad5dd436a8959450cd34435764c6b7464", - "supported-providers": "6fb177cab5db6585b8b8a391001773bfe7fe4cca55ba4838b5c48591493df027" + "supported-providers": "6fb177cab5db6585b8b8a391001773bfe7fe4cca55ba4838b5c48591493df027", + "error-no-output-dir-specified": "7e961b6f4ea5bf7658e8996b5820ccef1b08c73bafa14943cd4a82a4148c64c6", + "error-dir-create-failed": "9ca584f122eb9a35b44c9819dd6ebbe842ca038db34b80ef9626096060a74d29", + "error-no-reference-file-specified": "c03189f592c837d43afcff2eac577ccb949842e153bc4f41e82c9eeb0d6bccfd" } }, "fr-FR": { @@ -4279,7 +4627,10 @@ "error-no-reference-data-in-variable": "0ca53b2eeff67496590a7dc5bc85b5fb0896357bf057872392549ecf976725e3", "error-no-provider-specified": "64e2211af504bd76cfd365ee68e557a20804208bf06cc2132b93f8976ea341ef", "error-copying-file-to-temp-dir": "337b0a675e7d7e15494716b61c43436c951910ae2d71c6dc1eb98f0819bdb0df", - "supported-providers": "6fb177cab5db6585b8b8a391001773bfe7fe4cca55ba4838b5c48591493df027" + "supported-providers": "6fb177cab5db6585b8b8a391001773bfe7fe4cca55ba4838b5c48591493df027", + "error-no-output-dir-specified": "7e961b6f4ea5bf7658e8996b5820ccef1b08c73bafa14943cd4a82a4148c64c6", + "error-dir-create-failed": "9bc003c3dad588874b3cf9fdf157ff2aa8c2d489a3e2cf4eef76addb33340049", + "error-no-reference-file-specified": "c03189f592c837d43afcff2eac577ccb949842e153bc4f41e82c9eeb0d6bccfd" } }, "gsw": { @@ -4320,7 +4671,10 @@ "error-no-reference-data-in-variable": "20a7e96cdc3f05d069850b74aaaf8f91f5823db57580cfef0d282524476e7a3c", "error-no-provider-specified": "fdf17e96b8385df43712f7796fd3de83dd9d6ed567cf3bd142751b52cf158ac9", "error-copying-file-to-temp-dir": "c811e129c97f2087da3a93dc03b325f4f39f8db4e227d1ea4e6edc78a818c1b6", - "supported-providers": "4f6e5676c72ccbfeba518d5f55377565e762c0e5d6d7736605acad5078f4100d" + "supported-providers": "4f6e5676c72ccbfeba518d5f55377565e762c0e5d6d7736605acad5078f4100d", + "error-no-output-dir-specified": "7caa217d4254ddfc348f84e9e7d4a2a436598d40f62395efd2480e6dd079b3ef", + "error-dir-create-failed": "bda9c354b4368db66b76a94e6c3a9e92906d9cb6bee0f1559f9bbd93c4bf745f", + "error-no-reference-file-specified": "6da68ec2852c55775cc25cdda4289a36bb8715e2ca4310d5656b30f944bb7c84" } }, "hi": { @@ -4361,7 +4715,10 @@ "error-no-reference-data-in-variable": "46668929c5e8e7e7020e55195fe779d1170f1d91848ccd7059d44e335f6400f4", "error-no-provider-specified": "11d15e59cbeaed44b5bef8849701b4950d2aa614f459368850db4f2891bbc3e4", "error-copying-file-to-temp-dir": "da9345257feb9131a3eca6339dcd6dcbacab83498d6c9d2c6220fb87c20cb5d1", - "supported-providers": "bd4bc6d85814f581adeb28c63f95b93f5bc5e20f4afe5335c7070bf60db7cd50" + "supported-providers": "bd4bc6d85814f581adeb28c63f95b93f5bc5e20f4afe5335c7070bf60db7cd50", + "error-no-output-dir-specified": "0377ae1e838de33b1150daa91d383098ecb56d183e709b605e1912a01f214cc8", + "error-dir-create-failed": "ce0e00b082ddb1b5e818a3f716c7b95e95d40d87d7b226659a9f868fa3c8417e", + "error-no-reference-file-specified": "80a8550ccaec42b736aad5215153e81902f33562709231903cc0ab6f25519908" } }, "hr": { @@ -4402,7 +4759,10 @@ "error-no-reference-data-in-variable": "072eda67d3a728b244989453e8e49de12dce84c03d681df843550acf2dba6e08", "error-no-provider-specified": "9c00cfbcd1ccd26c7bc3e460f84f3bb02598129d511938830683ef50914c75c8", "error-copying-file-to-temp-dir": "0527d7614fa9ef8fac7f0a5f97876ecabe13ab375397f10c83a9216a432b52d0", - "supported-providers": "56c96237a3cf3c6ca0f8e439b18815f8d9dc01e1a39cb9ed2444abb22b5c936f" + "supported-providers": "56c96237a3cf3c6ca0f8e439b18815f8d9dc01e1a39cb9ed2444abb22b5c936f", + "error-no-output-dir-specified": "e8b735d1f8d9807ec76ed3bbaf6cad8e10d1070288de200b47ba39fb31c8d910", + "error-dir-create-failed": "4e87ec8410ce12f5401b514cc1c035c2a8016c040b9bb1edbbd0cf81158084ee", + "error-no-reference-file-specified": "c8fb1702b64891dfa162b73566d83ee2aa4ce9ad032abdbcc4c436a27f625d5d" } }, "hy": { @@ -4443,7 +4803,10 @@ "error-no-reference-data-in-variable": "4b0547f8d96036868ae08d98d254b31f17389ad5ed8ef32f52e1432aca57ef9e", "error-no-provider-specified": "9c53a163935e4bcddec8ab9666633f5a0b5268ec0fc76648e9ae938ffc57308f", "error-copying-file-to-temp-dir": "d3efb2d2de02df6a08cf12e63ca4d2bd0d4899f1aa48d09fc33facfe84b992ee", - "supported-providers": "59b46694647a8cafac3de3a8b9e71b2698f6f0c0b47aae1fbb8a99797f1dc209" + "supported-providers": "59b46694647a8cafac3de3a8b9e71b2698f6f0c0b47aae1fbb8a99797f1dc209", + "error-no-output-dir-specified": "b1853c7b918e2c6d79809dff4e1a8835bd318c49c97f463d6b5be79302f737d1", + "error-dir-create-failed": "f2b4a84d80e3ccf4c05fc59c6db8b6c3d57c2b36ac3d7526a2a90593bbecfa56", + "error-no-reference-file-specified": "eee7891622e2c17837ac2f1fad63130da625f72ae536b29c1ba5a0f7a196c038" } }, "ja": { @@ -4484,7 +4847,10 @@ "error-no-reference-data-in-variable": "512b2ffae38b66ee55298e3cf3282222b9e2235d69cd811d283108abfaa32818", "error-no-provider-specified": "c14e606aeb7a85d2c842c59183f247838c6ae881916e4cd503ecb73f4ffc8565", "error-copying-file-to-temp-dir": "2d895551712ff67d7ec007ca0abd615e816e6d4019d3ab7fba9caf479b7497c6", - "supported-providers": "9fa2a2a9d94d867154a96c71ea047285105aa165108c3fdeed5aadc13a8420d9" + "supported-providers": "9fa2a2a9d94d867154a96c71ea047285105aa165108c3fdeed5aadc13a8420d9", + "error-no-output-dir-specified": "5d76cc92be35a15780019dc79be4bc958af45f444e97b77385c27ff312a64112", + "error-dir-create-failed": "fb99618bd2f117b02c9b1a592fec4ad7cd89f649c7523270c82dfabe34346c03", + "error-no-reference-file-specified": "01d0321e1687b46d23557557faab7824f31319d3b5b5f678e599359b0b81dace" } }, "ksf": { @@ -4525,7 +4891,10 @@ "error-no-reference-data-in-variable": "8d97ba50db37f6133f0dc2405648076d8ab5ec334c1c51e9ea53eff448f45166", "error-no-provider-specified": "64e2211af504bd76cfd365ee68e557a20804208bf06cc2132b93f8976ea341ef", "error-copying-file-to-temp-dir": "364b6e1b32a13bcf074ad2b56e0bbccbb0c91167007e186bed5f31292a6fc661", - "supported-providers": "c390a9d4724c4c093525f7d0fd8ba5f664fdfa19781a244e22192f33fab6bad3" + "supported-providers": "c390a9d4724c4c093525f7d0fd8ba5f664fdfa19781a244e22192f33fab6bad3", + "error-no-output-dir-specified": "7f5d310baa6997ff75984d8a41b86837a9592ed757f80cd491e50c60b21cf924", + "error-dir-create-failed": "4fb001b4f70bfe07276832d91a9c5ced7fed81ebaa1596f30962668b224fffed", + "error-no-reference-file-specified": "b41e4bbbe0495c597cc6da10ba2d3990c7a0f5f8bca8b1cdac2ad20a05d78e09" } }, "km": { @@ -4566,7 +4935,10 @@ "error-no-reference-data-in-variable": "b032528b85d17ddb834a44ff180b8e8360e5763164ae8b560e98869a196ffc09", "error-no-provider-specified": "0a357dbd3a1b5119169f869e3fb44310f5b967e5d977f17f0f828294ee5bfa53", "error-copying-file-to-temp-dir": "a031f4833eb5a00f815060cf92b8af683ab0ed8b8cf6c9150a428ceadb61440c", - "supported-providers": "a3de373de248ea49fd61e15084b98ddd3dabdd3d41f67a2d6609cb552dbb33ca" + "supported-providers": "a3de373de248ea49fd61e15084b98ddd3dabdd3d41f67a2d6609cb552dbb33ca", + "error-no-output-dir-specified": "50a137cb35ee625ad6a3283c61a90d17cf8a480d4646c68afcfb9a90987181e9", + "error-dir-create-failed": "72b8ac50c13af90ea2d9731ec41430babe9002100105114de8976a893bd46161", + "error-no-reference-file-specified": "a4fffb805f9810b87355e56badffb9621c5129a0d5db609830b8f83463bb9607" } }, "ku": { @@ -4607,7 +4979,10 @@ "error-no-reference-data-in-variable": "9ce9b818d412b820d51565cb0fc49c71dbcdf0218b7c48b309e54d81c9981e20", "error-no-provider-specified": "7be8c78d65b71e6a72b9b1843d00b753c6d035a1c44ddd219ccceebe293fd5e2", "error-copying-file-to-temp-dir": "2de8a28155ed6ac041f09af900933564367532353471a88105857e3c8c1057fe", - "supported-providers": "e0fe7f76a6ebe240271a1b87f26b1074c528989268c41a2df199af9a2406a4d4" + "supported-providers": "e0fe7f76a6ebe240271a1b87f26b1074c528989268c41a2df199af9a2406a4d4", + "error-no-output-dir-specified": "d9f6d5d5385a8eb21475c0a4c654dbc137ceee177e62bac25d1132b409b0ffd8", + "error-dir-create-failed": "1f00fa5cb84e4f3e27748633c39dc0e6ff58e6b3e5129a0b1e603a11bddb9f6e", + "error-no-reference-file-specified": "fa84558d47df0e38a9bf65bffe8670b1025a18a0a5ce79a073955a40bea5ce9b" } }, "kw": { @@ -4648,7 +5023,10 @@ "error-no-reference-data-in-variable": "990ca8860b321deb252b379edb257f3cb69abf5abab427aaca977414c0417bb5", "error-no-provider-specified": "846357b59420bd29d04e9051fbbbead129601a0704da6bc5e1e175e6b41eb25a", "error-copying-file-to-temp-dir": "c20a501ceb5278f7a65e57fcec4da2460430664689092c9e6aafda75fed64ff6", - "supported-providers": "cc451fdaf94bf8ead90b15603f9751ac61762d8c4a7937c1738877ed62980f8b" + "supported-providers": "cc451fdaf94bf8ead90b15603f9751ac61762d8c4a7937c1738877ed62980f8b", + "error-no-output-dir-specified": "8135de87a3390a77b4d5dfe369c558e31c26033324ecd7c879142e2b423a8f35", + "error-dir-create-failed": "0681d90af11c8251847e2fc52550a377226fe962f460d16c86b4f367b6980e09", + "error-no-reference-file-specified": "e9df7350e7b62c5b47d58ccea43af87e4796b098d2d95aba345527ca285ab960" } }, "my": { @@ -4689,7 +5067,10 @@ "error-no-reference-data-in-variable": "ba540bfed121cf87040500e0fc1e2cde146c8938fd17fc86f6fc3ed81e492c54", "error-no-provider-specified": "20d8cfc8afe40090a24c71287b7746b04332f704fa81ea732e363472f717e438", "error-copying-file-to-temp-dir": "9e5cdde4b45918fb10aefa6bba921e49c06cbd13aaef09c11eabc3ed29660b99", - "supported-providers": "9555311e1ec3cb814280d01f1a6bdbf0ec7e72f097f93032f2871de9b907b5c4" + "supported-providers": "9555311e1ec3cb814280d01f1a6bdbf0ec7e72f097f93032f2871de9b907b5c4", + "error-no-output-dir-specified": "1e1a07e723c78c3fc86f5cc0c72a8adeca7f79a347b1fdb3676b9b4ffd2d1894", + "error-dir-create-failed": "6784579c66e23039a8fb1c56b73c346478900afc2ad3ebb2f6b69f942d0c7db0", + "error-no-reference-file-specified": "2f58ec4c16affa5507d10dfc99b7284ca135c07e8fa0c1d2188d40827c4e8af1" } }, "nl": { @@ -4730,7 +5111,10 @@ "error-no-reference-data-in-variable": "5105674768fb11d14248a90b316743bbb5b4d71b9f8e52fe1608795622ff7dc6", "error-no-provider-specified": "69d7df52dbd7786e70bf9cc68fe22c4937ae4d4d0f783df51f32b636461f0e1f", "error-copying-file-to-temp-dir": "9c52aeef5a327fad2347bf220cb956f56057aa041bf79aa69506a5324b64d410", - "supported-providers": "15746faa44f654dcb4b4b72d7a87b39cb6b6439ee5e94ac3d320d31a39337034" + "supported-providers": "15746faa44f654dcb4b4b72d7a87b39cb6b6439ee5e94ac3d320d31a39337034", + "error-no-output-dir-specified": "d601fffd276079d714da22295196aa486696cc93144018327722be302dcf58bf", + "error-dir-create-failed": "c481e7760754cedeecfbefebe8b5848d7196e8dabad92c00aeb693b6bf8eb41a", + "error-no-reference-file-specified": "a1a7f90ed53c4f2186e5e659f73898705a375899fe064a040e3ebce358f4dda2" } }, "ru": { @@ -4771,7 +5155,10 @@ "error-no-reference-data-in-variable": "b9aa683055b66303978b562cfa371e2ad20d4ed3a29beb1d8a4fea531e0436db", "error-no-provider-specified": "9773b239af11c09bae687234cc4603f635af7f5fb938ea1cc6ae437441d6cefb", "error-copying-file-to-temp-dir": "1b7f5fdabe27c22c0092fe87641fb583d24b8458bb78b6b152be8609ccb82551", - "supported-providers": "6e2ad8029c7e326e1cdb5f48dc061cf106b645309cc52fb94ded5c80c25cfcd0" + "supported-providers": "6e2ad8029c7e326e1cdb5f48dc061cf106b645309cc52fb94ded5c80c25cfcd0", + "error-no-output-dir-specified": "b87d61247abacf288404294e2cdb619d0b42ef391b5f772111a7884ca9774aa9", + "error-dir-create-failed": "0f0fca64e164983dabb685fe31b3db3579cb719b5490118657c29bb8b93ceed4", + "error-no-reference-file-specified": "085502e8eb965d77d321eb23a1956a06a87bfbe35883cb60a2bc60e691a2c50e" } }, "prs": { @@ -4812,7 +5199,10 @@ "error-no-reference-data-in-variable": "a3597ca4413122af3ea3cbcb8a6aac602a7579aed50069a3ba8f695284b50bb5", "error-no-provider-specified": "b89973f84c5825e0a6550991e74a8b13247c8007e3ea03f9243e45c43479cd7d", "error-copying-file-to-temp-dir": "970e05b3b2614c2bad5e6fb489e979c28462552cbd92c96dedfc1bf118e201e9", - "supported-providers": "47f201d07de412b8f252def126d9903d8212298ac13e3533c3c0056b95611725" + "supported-providers": "47f201d07de412b8f252def126d9903d8212298ac13e3533c3c0056b95611725", + "error-no-output-dir-specified": "7cbe087950a9545fbe9759e7b07099d792c3a4bc8da31d8738a355b647db3aaf", + "error-dir-create-failed": "3deba886d589d9fd3b3a2428771b6110ccb6cd4ff4a1ad46fd3ef0c52ada1126", + "error-no-reference-file-specified": "5d922979bec6a96db893db3c9374b64ca208170eb0bccb24b1a5a776c7aa4902" } }, "sq": { @@ -4853,7 +5243,10 @@ "error-no-reference-data-in-variable": "037653a8adcdd43aa90d5c3c4078314dfee94bdb7b40031df8e5db22c0b879b9", "error-no-provider-specified": "fe53d8987e5c8d1cdeab67957cf8fca27681170958f4f8d1d6c39989177e1055", "error-copying-file-to-temp-dir": "2fdb635caef8ad05d6ec5db9feef879d76e6b43e44e9fc9b99e4901c2f373ea0", - "supported-providers": "fac6fa6a05501629224ba12751e243e2fc55c1d477197cb7f0aa0a8ecd3d592f" + "supported-providers": "fac6fa6a05501629224ba12751e243e2fc55c1d477197cb7f0aa0a8ecd3d592f", + "error-no-output-dir-specified": "8a191c2fe9aef895f94b68f71f68d8e41fc4b0142d53e1a2fb12f8c36be14b5e", + "error-dir-create-failed": "8713b4819cd8638b62c19caa96d94222a9893646f17a5f1d33e45013cad0202d", + "error-no-reference-file-specified": "b1fc4908134373e3a6d975374f740e162a79d90e1697da18685005c87e42c645" } }, "swc": { @@ -4894,7 +5287,10 @@ "error-no-reference-data-in-variable": "98a6fe57be0b2f0d2f44655046e23d86862c0ee70369e50206af884cd6fbae5e", "error-no-provider-specified": "4f6002e8649d4c813b535da283e3c5bc66146d06dcffc54840bf680399f99e9c", "error-copying-file-to-temp-dir": "e6b6421c38ee51a7bb7a1e98f69f187c2b20b9e49b6c677a2a26ffcef81a5cc2", - "supported-providers": "b6851bce8af64072b2331b3990c328ee93253dab9213466bfb7719daf795d955" + "supported-providers": "b6851bce8af64072b2331b3990c328ee93253dab9213466bfb7719daf795d955", + "error-no-output-dir-specified": "2def6bf7e87da75106ec3c187af877da21a8b9753ebf471c2e1e45f33d78ba58", + "error-dir-create-failed": "479a4477104ea6f2256a556d464f523be3f816b3a36fa0d17e1c932de9559731", + "error-no-reference-file-specified": "4a81972b28917a5963c72e7dcd15854b7708a740f115e5f46a06ad3f11c53fc5" } }, "th": { @@ -4935,7 +5331,10 @@ "error-no-reference-data-in-variable": "483f19e83230ad959c4d0678719a541e03725ab53a238c31a4666b03987b4f13", "error-no-provider-specified": "bd4c369a44da9de08162770cff6c95cc4f8d967809e33339c916f48d6c5166a3", "error-copying-file-to-temp-dir": "9d7275d8d494cf6c5b5660f3bf5044466a0e4be4437b8a90fc73c8eb017fff0a", - "supported-providers": "fe07f96848bbb082a434b75cef47054131d7d043bdb666c4589d14c96384dcab" + "supported-providers": "fe07f96848bbb082a434b75cef47054131d7d043bdb666c4589d14c96384dcab", + "error-no-output-dir-specified": "128197773ebf74b9c20a411c05939f78df1505498ae9045a90839e5777966804", + "error-dir-create-failed": "b83b7ded899885461e33d80cdacffc7bf704b82773fa212abeff54796cc716d7", + "error-no-reference-file-specified": "c5c7ba3ad450d7773e58635e42ee3356df5d115905a432e95d98c24e9de5d598" } }, "tzm-Latn-": { @@ -4976,7 +5375,10 @@ "error-no-reference-data-in-variable": "71af74ec53456fcfcd09111abd866ecf1a2725b29257f8c8a4e6324538e24b94", "error-no-provider-specified": "58c96d4016bbaf18093aebd5ccbe37d17cd618a74da96a555036401908011f96", "error-copying-file-to-temp-dir": "bbbf798986b8c5c691027c8949e1dfaee9f17d9e268551ee98f987d3823e9cfa", - "supported-providers": "593809b1ed8ef4f953d75046dddf943017b86019bbc111a477a913ee757fc72c" + "supported-providers": "593809b1ed8ef4f953d75046dddf943017b86019bbc111a477a913ee757fc72c", + "error-no-output-dir-specified": "5bd7f32ecbfaaf594d492f3806017b210612de3041a557d78ca5ac8be5afea04", + "error-dir-create-failed": "b1c8994dad33c5873bffb15e42d3132957b3be3d50bd042479065aee724b957c", + "error-no-reference-file-specified": "ef9b29ea0b432d1a5086cdf580471daaf830ce9dc64f9d6a134dfddf8df701dc" } }, "uk": { @@ -5017,7 +5419,10 @@ "error-no-reference-data-in-variable": "858a4de1209aa36f306d77ee300051dea7d72f3cb2167eed64fb9f2308c150b3", "error-no-provider-specified": "9c8b8879cd489c6cec5382343292929e62956e6138ed92637b81e56e7c7e2724", "error-copying-file-to-temp-dir": "3dddc7c40c4dcd636562e9b4664a7e29520ede3e69d9335bb66a4c913a6a252e", - "supported-providers": "a89df6bb32913bcbefdc5bf46089b5e83a8efbc1329d3ef973912764a1a8b449" + "supported-providers": "a89df6bb32913bcbefdc5bf46089b5e83a8efbc1329d3ef973912764a1a8b449", + "error-no-output-dir-specified": "502b036bb9ca39e4641cd829ec3e9d7b258b263edbc655b52729869e91267bd7", + "error-dir-create-failed": "f192d26f2b859908b7c51e80946bea430324ece26d2449c16ed045d1009a7762", + "error-no-reference-file-specified": "855acb2dc70ff82b93c9db158cba8b8cac5f9d3f624a8ab0fcd091eb51d01a8f" } }, "vi": { @@ -5058,7 +5463,10 @@ "error-no-reference-data-in-variable": "03bbd7d61f9b48f5587204ac5ae7991e8fb49ef5678a97ce1250fe68a3900edd", "error-no-provider-specified": "e3d17ca28255db29e5040763ed471864f5e680587f00b34e03a3b9a819ea517a", "error-copying-file-to-temp-dir": "749a87cda4dbec3fa3bec429cdf29b42b0c6ff6364a4d19db0bda2b23222a16a", - "supported-providers": "0631b80324825bd64a03c534581a556d8622495aa617ea2df8fbae651059538d" + "supported-providers": "0631b80324825bd64a03c534581a556d8622495aa617ea2df8fbae651059538d", + "error-no-output-dir-specified": "a39c73feddc5d4939bb4f728e52dd67ea36a225d5e28a9b8c2ac0c68c62971bb", + "error-dir-create-failed": "2812f12948a9ebd4e95be70389196060548c43bc28ff0a16c8df145f27ade824", + "error-no-reference-file-specified": "448a8ca0b4e91894ac27b5bcb4552c7ff5a4dadb9e44079f5c2197b240e6460b" } }, "zh-SG": { @@ -5119,7 +5527,10 @@ "error-no-reference-data-in-variable": "29fd503e5b7ed1868b4c5dd84599be2d5d81e5ec820883955d635b5514d86ff6", "error-no-provider-specified": "d55b0f570884196d1c382281b9188653127958bf3ebd0aa1445237fb58ae269a", "error-copying-file-to-temp-dir": "1aca0b32a9f516044857ee0009cdeb6c88aeb7bec2886dac4899b2ab72d2a6b8", - "supported-providers": "25f6d5c6ec4b92f42f98e211753df832c830f2ad2d2bda8087bd68bf15781412" + "supported-providers": "25f6d5c6ec4b92f42f98e211753df832c830f2ad2d2bda8087bd68bf15781412", + "error-no-output-dir-specified": "d2fe34744e4b4b802091927d546b56a46329f4bd26e982f525d53409677098a7", + "error-dir-create-failed": "bbea1616855445dd0aad9d00ecf3134e54b92f724e497d58a468b9f53a226279", + "error-no-reference-file-specified": "b9a48aa8437dbaf5565d5ee17400b1713c7ad99f34b7e13ab08a6c7a66ff63a3" } }, "zh-Hant": { @@ -5160,9 +5571,12 @@ "error-no-reference-data-in-variable": "e1eee557fc5e7c510c5ae1abc791336f24f269cbb408beb8f4f2c13f36972369", "error-no-provider-specified": "d55b0f570884196d1c382281b9188653127958bf3ebd0aa1445237fb58ae269a", "error-copying-file-to-temp-dir": "c42165e780403e96460f87786e64ea2575b6b4a934b7bed82565aa2a4c4c941c", - "supported-providers": "6f0ae3731cf21cf119490edb53dc15b7ace6c723876d3d5428779d2619368c4d" + "supported-providers": "6f0ae3731cf21cf119490edb53dc15b7ace6c723876d3d5428779d2619368c4d", + "error-no-output-dir-specified": "f23917cc795155b2e2f95701803a76ccda309c385ddfc3934448362d2da0ecdf", + "error-dir-create-failed": "fe125bdb957bca6c0ea15aa534a74afd76e5149c98335330fc1dbd6dd5bd980d", + "error-no-reference-file-specified": "0cf9e6a7260ed62c80265851768ec82d617cd03e185e8aef8354030c5cacc948" } } }, - "lastRun": "2025-04-18T11:00:45.680Z" + "lastRun": "2025-04-18T19:49:38.052Z" } \ No newline at end of file diff --git a/localization/aa.json b/localization/aa.json index 33063a3..21362db 100644 --- a/localization/aa.json +++ b/localization/aa.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Maay tamaan kee data nabaadi goolii \"%%referenceExportedVarName%%\" akka \"%%referenceFile%%\" kee.", "error-no-provider-specified": "Provider maqan.", "error-copying-file-to-temp-dir": "Nuqul diqqita fayl ila dir temp: %%error%%", - "supported-providers": "Taageerayaasha la heli karo waa: %%providers%%" + "supported-providers": "Taageerayaasha la heli karo waa: %%providers%%", + "error-no-output-dir-specified": "Kaka output directory adangolɛ ye via '--output-dir', nɛ kaka config file nu (via 'outputDir'), aloo nɛ kaka directory koŋ sɔni ŋɔ nɛ file ko nya oo (\"%%refFileDir%%\")", + "error-dir-create-failed": "Failed to create directory \"%%dir%%\"", + "error-no-reference-file-specified": "Gbaŋ co bee hɔɔ maa via '--reference-file' asole config gbaŋ co mli (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/af.json b/localization/af.json index 5dd538e..a16cd35 100644 --- a/localization/af.json +++ b/localization/af.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Geen verwysingsdata gevind in veranderlike \"%%referenceExportedVarName%%\" in \"%%referenceFile%%\" nie.", "error-no-provider-specified": "Geen verskaffer gespesifiseer nie.", "error-copying-file-to-temp-dir": "Fout met die kopieer van lêer na tydelike gids: %%error%%", - "supported-providers": "Ondersteunde verskaffers is: %%providers%%" + "supported-providers": "Ondersteunde verskaffers is: %%providers%%", + "error-no-output-dir-specified": "Geen uitvoermap gespesifiseer via '--output-dir', in 'n konfigurasielêer (via 'outputDir'), of in dieselfde gids as jou verwysingslêer (\"%%refFileDir%%\")", + "error-dir-create-failed": "Kon nie gids \"%%dir%%\" skep nie", + "error-no-reference-file-specified": "Geen verwysingslêer gespesifiseer via '--reference-file' of in konfigurasielêer (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/agq.json b/localization/agq.json index 54778c5..0ef6da9 100644 --- a/localization/agq.json +++ b/localization/agq.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Ntáʼá mə̀dzɨ̀ghɨ̀ ghɨ̀sɨ ntə̀ \"%%referenceExportedVarName%%\" mə̀ \"%%referenceFile%%\"", "error-no-provider-specified": "Aʼ nɛ́nɛ́ m̀ ntsɛ̀mɛ̀ m̀ ghɛ́.", "error-copying-file-to-temp-dir": "Mbi mbiɛ̀ njiɛ̀ m̀ fáyel ghɨ temp dɨrektri: %%error%%", - "supported-providers": "À njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à nji" + "supported-providers": "À njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à njì à nji", + "error-no-output-dir-specified": "Ka tɨ tyi ngɨm ntɨŋ tswisə via '--output-dir', a fælə ŋwàʔlɨ̀ (via 'outputDir'), kə̀ à kuatə tswisə zɨ bo yɨ̀ a ghamə mbwo fælə wòo (\"%%refFileDir%%\")", + "error-dir-create-failed": "Ndɔgalə dzēʼ \"%%dir%%\"", + "error-no-reference-file-specified": "Kə̀ nìtsɔ̀' ntɨ àŋwà̀ʔàkè' a yu'ntɨ tə̀ '--reference-file' kàkɨ̀ yi ntsə̀ŋ àŋwà̀ʔ a nàʔ ntùghatə̀ (a yu'ntɨ 'referenceFile')" } \ No newline at end of file diff --git a/localization/ak.json b/localization/ak.json index ffe53ab..24e4b61 100644 --- a/localization/ak.json +++ b/localization/ak.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Ennhu sɛdeɛ biara wɔ \"%%referenceExportedVarName%%\" mu wɔ \"%%referenceFile%%\" mu", "error-no-provider-specified": "Ɛnnye onipa bi a ɔde bɛkyerɛ.", "error-copying-file-to-temp-dir": "Nkɔmbɔ afa fael no kɔ temp dɛrɛktri no mu: %%error%%", - "supported-providers": "Ahwɛfo a wɔtwerɛ no yɛ: %%providers%%" + "supported-providers": "Ahwɛfo a wɔtwerɛ no yɛ: %%providers%%", + "error-no-output-dir-specified": "Wonkyerɛɛ output directory biara nam '--output-dir', config file (nam 'outputDir'), anaa wɔ directory korɔ no ara a wo reference file wɔ mu (\"%%refFileDir%%\")", + "error-dir-create-failed": "Antumi anyɛ \"%%dir%%\" krado no", + "error-no-reference-file-specified": "Wɔamfa nsɛm krataa foforɔ biara amma wɔn amma wɔnhyɛ no ase denam '--reference-file' anaasɛ nhyehyɛe krataa (denam 'referenceFile' so) no mu" } \ No newline at end of file diff --git a/localization/am.json b/localization/am.json index 235eaa1..6006406 100644 --- a/localization/am.json +++ b/localization/am.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "በ \"%%referenceFile%%\" ውስጥ በተለያዩ ተለዋዋጭ \"%%referenceExportedVarName%%\" ምንም አገናኝ መረጃ አልተገኘም።", "error-no-provider-specified": "አንድም አቅራቢ አልተጠናቀቀም።", "error-copying-file-to-temp-dir": "ፋይልን ወደ ተረኛ ማውጫ መቅዳት ላይ ስህተት አለ: %%error%%", - "supported-providers": "የተደገፉ አገልጋቢዎች ናቸው፡ %%providers%%" + "supported-providers": "የተደገፉ አገልጋቢዎች ናቸው፡ %%providers%%", + "error-no-output-dir-specified": "በ '--output-dir' በኩል ወይም በውቅር ፋይል (በ 'outputDir') ወይም በእርስዎ የማጣቀሻ ፋይል (\"%%refFileDir%%\") ተመሳሳይ ዳይሬክቶሪ ውስጥ ምንም የውጤት ዳይሬክቶሪ አልተገለጸም", + "error-dir-create-failed": "\"%%dir%%\" የሚለውን ዳይሬክቶሪ መፍጠር አልተቻለም", + "error-no-reference-file-specified": "ምንም የማጣቀሻ ፋይል አልተገለጸም በ '--reference-file' ወይም በውቅረት ፋይል ውስጥ (በ 'referenceFile' በኩል)" } \ No newline at end of file diff --git a/localization/ar.json b/localization/ar.json index 42bbcd4..f827b9f 100644 --- a/localization/ar.json +++ b/localization/ar.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "لم يتم العثور على بيانات مرجعية في المتغير \"%%referenceExportedVarName%%\" في \"%%referenceFile%%\"", "error-no-provider-specified": "لم يتم تحديد مزود.", "error-copying-file-to-temp-dir": "خطأ في نسخ الملف إلى المجلد المؤقت: %%error%%", - "supported-providers": "المزودون المدعومون هم: %%providers%%" + "supported-providers": "المزودون المدعومون هم: %%providers%%", + "error-no-output-dir-specified": "لم يتم تحديد دليل الإخراج عبر '--output-dir'، أو في ملف التكوين (عبر 'outputDir')، أو في نفس الدليل كملف المرجع الخاص بك (\"%%refFileDir%%\")", + "error-dir-create-failed": "فشل في إنشاء الدليل \"%%dir%%\"", + "error-no-reference-file-specified": "لم يتم تحديد ملف مرجعي عبر '--reference-file' أو في ملف التكوين (عبر 'referenceFile')" } \ No newline at end of file diff --git a/localization/as.json b/localization/as.json index 0aed9fc..8eefa8c 100644 --- a/localization/as.json +++ b/localization/as.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "\"%%referenceFile%%\" ত চলিত \"%%referenceExportedVarName%%\" পৰিৱৰ্তনশীলত কোনো তথ্য পোৱা নগ'ল।", "error-no-provider-specified": "কোনো যোগানদাতা নির্দিষ্ট কৰা হোৱা নাই।", "error-copying-file-to-temp-dir": "ফাইলটো টেম্প ডিৰেক্টৰীলৈ কপি কৰাৰ সময়ত ত্ৰুটি হৈছে: %%error%%", - "supported-providers": "সমর্থিত প্ৰদানকাৰীসমূহ হৈছে: %%providers%%" + "supported-providers": "সমর্থিত প্ৰদানকাৰীসমূহ হৈছে: %%providers%%", + "error-no-output-dir-specified": "গম্যাদিতা নিৰ্দিষ্ট কৰা হোৱা নাই '--output-dir'ৰ জৰিয়তে, এটা কনফিগ ফাইলত (outputDir'ৰ জৰিয়তে), বা আপোনাৰ ৰেফাৰেন্স ফাইলৰ (\"%%refFileDir%%\") একে টা ডিৰেক্টৰিত", + "error-dir-create-failed": "ডিৰেক্টৰী \"%%dir%%\" সৃষ্টি কৰিবলৈ বিফল হৈছে", + "error-no-reference-file-specified": "কোনো সন্দৰ্ভ ফাইল নিৰ্দিষ্ট কৰা হোৱা নাই '--reference-file'ৰ জৰিয়তে বা কনফিগ ফাইলত (referenceFile'ৰ জৰিয়তে)" } \ No newline at end of file diff --git a/localization/asa.json b/localization/asa.json index e604df0..c55536a 100644 --- a/localization/asa.json +++ b/localization/asa.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Hakuna data ya rejea iliyopatikana katika kigezo \"%%referenceExportedVarName%%\" katika faili \"%%referenceFile%%\"", "error-no-provider-specified": "Hakuna mtoa huduma aliyetajwa.", "error-copying-file-to-temp-dir": "Kosa la kunakili faili kwenda kwenye saraka ya muda: %%error%%", - "supported-providers": "Watoaji wanaoungwa mkono ni: %%providers%%" + "supported-providers": "Watoaji wanaoungwa mkono ni: %%providers%%", + "error-no-output-dir-specified": "Kobaɬitwa tona cha hiivangu kiibaɬitwache viira '--output-dir', viibaɬitwache kiitavuni chakeɬumirwa (viira 'outputDir'), au viira vudu fiiyo chuhiibaɬitwache (\"%%refFileDir%%\")", + "error-dir-create-failed": "Bo nishindwaga uumba jalada \"%%dir%%\"", + "error-no-reference-file-specified": "Owacungwagha fiela yo kutalilia kupitia '--reference-file' au mufira ya usanifi (kupitia 'referenceFile')" } \ No newline at end of file diff --git a/localization/ast.json b/localization/ast.json index 03d611f..cc69711 100644 --- a/localization/ast.json +++ b/localization/ast.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Nun s'atoparon datos de referencia na variable \"%%referenceExportedVarName%%\" en \"%%referenceFile%%\"", "error-no-provider-specified": "Nun se especificó nengún provisor.", "error-copying-file-to-temp-dir": "Error al copiar el ficheru al direutoriu temporal: %%error%%", - "supported-providers": "Los proveedores compatibles son: %%providers%%" + "supported-providers": "Los proveedores compatibles son: %%providers%%", + "error-no-output-dir-specified": "Nun s'especificó l'direutoriu de salida por aciu '--output-dir', nun ficheru de configuración (por aciu 'outputDir'), o nel mesmu direutoriu qu'el to ficheru de referencia (\"%%refFileDir%%\")", + "error-dir-create-failed": "Fallu al crear el direutoriu \"%%dir%%\"", + "error-no-reference-file-specified": "Nun se especificó ficheru de referencia por aciu '--reference-file' o nel ficheru de configuración (per 'referenceFile')" } \ No newline at end of file diff --git a/localization/az.json b/localization/az.json index 73d62cd..1712232 100644 --- a/localization/az.json +++ b/localization/az.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "\"%%referenceExportedVarName%%\" dəyişənində \"%%referenceFile%%\" faylında heç bir istinad məlumatı tapılmadı.", "error-no-provider-specified": "Təchizatçı göstərilməyib.", "error-copying-file-to-temp-dir": "Faylı müvəqqəti qovluğa kopyalamaqda səhv: %%error%%", - "supported-providers": "Dəstəklənən təminatçılar: %%providers%%" + "supported-providers": "Dəstəklənən təminatçılar: %%providers%%", + "error-no-output-dir-specified": "Nə \"--output-dir\" vasitəsilə, konfiqurasiya faylında (\"outputDir\" vasitəsilə), nə də istinad faylınızla eyni kataloqda (\"%%refFileDir%%\") çıxış kataloqu göstərilməyib", + "error-dir-create-failed": "\"%%dir%%\" qovluğunu yaratmaq alınmadı", + "error-no-reference-file-specified": "İstinad faylı '--reference-file' vasitəsilə və ya konfiqurasiya faylında ('referenceFile' vasitəsilə) göstərilməyib" } \ No newline at end of file diff --git a/localization/ba.json b/localization/ba.json index 72eed48..074b9b9 100644 --- a/localization/ba.json +++ b/localization/ba.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Nema referentnih podataka pronađenih u varijabli \"%%referenceExportedVarName%%\" u \"%%referenceFile%%\"", "error-no-provider-specified": "Nema navedenog pružaoca usluga.", "error-copying-file-to-temp-dir": "Greška pri kopiranju datoteke u privremeni direktorij: %%error%%", - "supported-providers": "Podržani provajderi su: %%providers%%" + "supported-providers": "Podržani provajderi su: %%providers%%", + "error-no-output-dir-specified": "Няма указана изходна директория чрез '--output-dir', в конфигурационен файл (чрез 'outputDir') или в същата директория като референтния ви файл (\"%%refFileDir%%\")", + "error-dir-create-failed": "Nìke láti dá àpò fáìlì \"%%dir%%\"", + "error-no-reference-file-specified": "Ћъџщҭљщ хйҥл хмфњч љя ҙґсєєѓҌ'--reference-file' ёцц є ёџєцџ яэфшч (чяъ 'referenceFile')" } \ No newline at end of file diff --git a/localization/bas.json b/localization/bas.json index aa1e2d4..3c6d889 100644 --- a/localization/bas.json +++ b/localization/bas.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Ez da erreferentzia datuak aurkitu aldagai honetan \"%%referenceExportedVarName%%\" fitxategi honetan \"%%referenceFile%%\"", "error-no-provider-specified": "Ez da hornitzaile zehatzik zehaztu.", "error-copying-file-to-temp-dir": "Errorea fitxategia temp direktoriora kopiatzean: %%error%%", - "supported-providers": "Fournisseurs pris en charge : %%providers%%" + "supported-providers": "Fournisseurs pris en charge : %%providers%%", + "error-no-output-dir-specified": "Dí báŋánbii é wandi yétna via '--output-dir', i lélɛ nu mut (via 'outputDir'), kíkií i mɔn inyu yétna niŋé wé i ye baséna bôt (\"%%refFileDir%%\")", + "error-dir-create-failed": "Hia nyenmeha bôn lôn \"%%dir%%\"", + "error-no-reference-file-specified": "Mbi biniamene bon biniiga bi bumbe i '--reference-file' to i mi nlôñ bumbe (i 'referenceFile')" } \ No newline at end of file diff --git a/localization/be.json b/localization/be.json index 4da698e..d4824e4 100644 --- a/localization/be.json +++ b/localization/be.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Не знойдзеныя дадзеныя для спасылкі ў зменнай \"%%referenceExportedVarName%%\" у \"%%referenceFile%%\"", "error-no-provider-specified": "Не пазначаны правайдар.", "error-copying-file-to-temp-dir": "Памылка капіявання файла ў часовы каталог: %%error%%", - "supported-providers": "Падтрымліваюцца наступныя правайдэры: %%providers%%" + "supported-providers": "Падтрымліваюцца наступныя правайдэры: %%providers%%", + "error-no-output-dir-specified": "Адсутнічае вызначаны каталог вываду праз '--output-dir', у файле канфігурацыі (праз 'outputDir') або ў тым жа каталозе, што і ваш эталонны файл (\"%%refFileDir%%\")", + "error-dir-create-failed": "আপনি \"%%dir%%\" ডিরেক্টরি তৈরি করতে ব্যর্থ হয়েছেন", + "error-no-reference-file-specified": "কোন ৰেফাৰেন্স ফাইল '--reference-file' ৰ জৰিয়তে বা কনফিগ ফাইলত (ৰেফাৰেন্স ফাইল' ৰ জৰিয়তে) নিৰ্দিষ্ট কৰা হোৱা নাই" } \ No newline at end of file diff --git a/localization/bem.json b/localization/bem.json index e6e1f46..85cddb9 100644 --- a/localization/bem.json +++ b/localization/bem.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Palibe data ya chikumbutso yapezeka mu variable \"%%referenceExportedVarName%%\" mu \"%%referenceFile%%\"", "error-no-provider-specified": "Palibe mupereka wakusankhidwa.", "error-copying-file-to-temp-dir": "Ukupoka ifayile ku temp directory: %%error%%", - "supported-providers": "Abapenipako abakondwelwa ni: %%providers%%" + "supported-providers": "Abapenipako abakondwelwa ni: %%providers%%", + "error-no-output-dir-specified": "Tapali incende cabikishapo ukupitila mu '--output-dir', muli ifailo lyakupanga (ukupitila mu 'outputDir'), nangu muli icende cimo ne failo lyenu ilyakusontelwapo (\"%%refFileDir%%\")", + "error-dir-create-failed": "Palama ukulenga umwakubika ifya \"%%dir%%\"", + "error-no-reference-file-specified": "Tapali ifaielo lya cilolele ilingilwe ku '--reference-file' nangu mu ifaielo lya mpangilo (ukupitila mu 'referenceFile')" } \ No newline at end of file diff --git a/localization/bez.json b/localization/bez.json index d1ea223..2ecea41 100644 --- a/localization/bez.json +++ b/localization/bez.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Hakuna data ya rejea iliyopatikana katika kigezo \"%%referenceExportedVarName%%\" katika \"%%referenceFile%%\"", "error-no-provider-specified": "Hakuna mtandao uliotajwa.", "error-copying-file-to-temp-dir": "Kosa la kunakili faili kwenda kwenye direktori ya muda: %%error%%", - "supported-providers": "Watozaji wanaoungwa mkono ni: %%providers%%" + "supported-providers": "Watozaji wanaoungwa mkono ni: %%providers%%", + "error-no-output-dir-specified": "Havikw vyaja fwe hakyebiyosiwa kupitiria '--output-dir', mu faili ywe kusanidimisiwa (kupititria 'outputDir'), au mu dyango banyaini ne faili yako ywa kuhwamiriwa (\"%%refFileDir%%\")", + "error-dir-create-failed": "Kutohulike kutengeza imbadiliko \"%%dir%%\"", + "error-no-reference-file-specified": "Vi taafanyi iya wa kurejaa asehamiswe kupitia '--reference-file' ama mu faili ya usanidi (kupitia 'referenceFile')" } \ No newline at end of file diff --git a/localization/bg.json b/localization/bg.json index f1003a6..c421771 100644 --- a/localization/bg.json +++ b/localization/bg.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Не са намерени референтни данни в променлива \"%%referenceExportedVarName%%\" в \"%%referenceFile%%\"", "error-no-provider-specified": "Не е посочен доставчик.", "error-copying-file-to-temp-dir": "Грешка при копиране на файла във временната директория: %%error%%", - "supported-providers": "Поддържани доставчици са: %%providers%%" + "supported-providers": "Поддържани доставчици са: %%providers%%", + "error-no-output-dir-specified": "Не е указана изходна директория чрез '--output-dir', в конфигурационен файл (чрез 'outputDir') или в същата директория като референтния ви файл (\"%%refFileDir%%\")", + "error-dir-create-failed": "Неуспешно създаване на директория \"%%dir%%\"", + "error-no-reference-file-specified": "Няма посочен референтен файл чрез '--reference-file' или в конфигурационния файл (чрез 'referenceFile')" } \ No newline at end of file diff --git a/localization/bm.json b/localization/bm.json index 97f0b19..5020026 100644 --- a/localization/bm.json +++ b/localization/bm.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Tiada data rujukan dijumpai dalam pemboleh ubah \"%%referenceExportedVarName%%\" dalam \"%%referenceFile%%\"", "error-no-provider-specified": "Tiada penyedia ditentukan.", "error-copying-file-to-temp-dir": "Ralat menyalin fail ke direktori sementara: %%error%%", - "supported-providers": "Penyedia yang disokong adalah: %%providers%%" + "supported-providers": "Penyedia yang disokong adalah: %%providers%%", + "error-no-output-dir-specified": "Tiada direktori output yang dinyatakan melalui '--output-dir', dalam fail konfigurasi (melalui 'outputDir'), atau dalam direktori yang sama dengan fail rujukan anda (\"%%refFileDir%%\")", + "error-dir-create-failed": "Gagal mencipta direktori \"%%dir%%\"", + "error-no-reference-file-specified": "Tiada fail rujukan ditetapkan melalui '--reference-file' atau dalam fail konfigurasi (melalui 'referenceFile')" } \ No newline at end of file diff --git a/localization/bn.json b/localization/bn.json index f6605cd..a4e29e2 100644 --- a/localization/bn.json +++ b/localization/bn.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "\"%%referenceExportedVarName%%\" চলকে \"%%referenceFile%%\" ফাইলে কোনো রেফারেন্স ডেটা পাওয়া যায়নি।", "error-no-provider-specified": "কোনো প্রদানকারী নির্দিষ্ট করা হয়নি।", "error-copying-file-to-temp-dir": "টেম্প ডিরেক্টরিতে ফাইল কপি করতে গিয়ে ত্রুটি: %%error%%", - "supported-providers": "সমর্থিত প্রদানকারীরা হলেন: %%providers%%" + "supported-providers": "সমর্থিত প্রদানকারীরা হলেন: %%providers%%", + "error-no-output-dir-specified": "কোন আউটপুট ডিরেক্টরি নির্দিষ্ট করা হয়নি '--output-dir' এর মাধ্যমে, কোন কনফিগ ফাইলে (outputDir' এর মাধ্যমে), অথবা আপনার রেফারেন্স ফাইলের একই ডিরেক্টরিতে (\"%%refFileDir%%\")", + "error-dir-create-failed": "\"%%dir%%\" ডিরেক্টরি তৈরি করতে ব্যর্থ হয়েছে", + "error-no-reference-file-specified": "কোনো রেফারেন্স ফাইল '--reference-file' এর মাধ্যমে বা কনফিগ ফাইলে (referenceFile এর মাধ্যমে) উল্লেখ করা হয়নি" } \ No newline at end of file diff --git a/localization/bo.json b/localization/bo.json index 03c845b..bbb69e8 100644 --- a/localization/bo.json +++ b/localization/bo.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "མིང་ཚིག་གིས་ \"%%referenceExportedVarName%%\" ནང་འདི་ནང་གི་ \"%%referenceFile%%\" ནང་ལུ་གསལ་བཤད་གྲངས་མི་ཐོབ།", "error-no-provider-specified": "གསལ་འཛིན་མེད།", "error-copying-file-to-temp-dir": "ཡིག་ཆ་བརྗེ་བའི་ནུས་གསོག་ཁང་ལུ་བཙུགས་ནི་འཛོལ་བ།: %%error%%", - "supported-providers": "རྩིས་འཛིན་གྲོགས་པ་རྣམས་ནི། %%providers%%" + "supported-providers": "རྩིས་འཛིན་གྲོགས་པ་རྣམས་ནི། %%providers%%", + "error-no-output-dir-specified": "གདམ་བྱེད་ '--output-dir' བརྒྱུད་ནས་ཡང་ན་རིམ་སྒྲིག་ཡིག་ཆའི་ནང་དུ ('outputDir' བརྒྱུད་ནས)། ཡང་ན་ཁྱེད་ཀྱི་ཚད་འཛིན་ཡིག་ཆར་(\"%%refFileDir%%\")བཞིན་པའི་དཀར་ཆག་གཅིག་པའི་ནང་དུ་འབྱིན་གཏོང་ཡིག་ཆའི་དཀར་ཆག་གསལ་བཤད་མ་བྱས།", + "error-dir-create-failed": "ལམ་བུ་\"%%dir%%\"བཟོ་མ་ཐུབ།", + "error-no-reference-file-specified": "ཕྱི་གཏུག་ཡིག་ཆ་ '--reference-file' བརྒྱུད་ནས་སམ་སྒྲིག་སྒྱུར་ཡིག་ཆའི་ནང་ ('referenceFile' བརྒྱུད་ནས་) གསལ་བཀོད་བྱས་མེད།" } \ No newline at end of file diff --git a/localization/br.json b/localization/br.json index 723e955..7488ce1 100644 --- a/localization/br.json +++ b/localization/br.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Nenhum dado de referência encontrado na variável \"%%referenceExportedVarName%%\" em \"%%referenceFile%%\"", "error-no-provider-specified": "Nenhum fornecedor especificado.", "error-copying-file-to-temp-dir": "Erro ao copiar arquivo para o diretório temporário: %%error%%", - "supported-providers": "Os provedores suportados são: %%providers%%" + "supported-providers": "Os provedores suportados são: %%providers%%", + "error-no-output-dir-specified": "Bez lakaet ebet spisaet dre \"--output-dir\", en ur restr kefluniadur (dre \"outputDir\"), pe er memes kavlec'h hag ho restr dave (\"%%refFileDir%%\")", + "error-dir-create-failed": "Falha ao criar o diretório \"%%dir%%\"", + "error-no-reference-file-specified": "Ne spesifiet teuliad daveenn ebet dre '--reference-file' pe er restr gefluniañ (dre 'referenceFile')" } \ No newline at end of file diff --git a/localization/brx.json b/localization/brx.json index ef022e2..903c0ed 100644 --- a/localization/brx.json +++ b/localization/brx.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "\"%%referenceExportedVarName%%\" गोथां \"%%referenceFile%%\" बर' नो रेफरेन्स डेटा फाउन्द गावायलै.", "error-no-provider-specified": "Provider khonabw thaido.", "error-copying-file-to-temp-dir": "Temp directory gwrthaw file kopai gwdan: %%error%%", - "supported-providers": "সমর্থিত প্রদানকারীসমূহ আছে: %%providers%%" + "supported-providers": "সমর্থিত প্রদানকারীসমূহ আছে: %%providers%%", + "error-no-output-dir-specified": "बाइखौनो आउटपुट डाइरेक्टरि निर्दिष्ट खालामाखै '--output-dir' व', कन्फिग फाइल (via 'outputDir'), एबा गोबां रेफारेन्स फाइलनि मोननै फोलदारावनो (\"%%refFileDir%%\")", + "error-dir-create-failed": "\"%%dir%%\" सोरजि खालामनाय जाफ्रुंमोन", + "error-no-reference-file-specified": "सामाखौ अरायथि आखुथाय फाइल स्पेसिफाइ खालाखै '--reference-file' -निफ्राय नङाब्ला कनफिग फाइलआव (निफ्राय 'referenceFile')" } \ No newline at end of file diff --git a/localization/bs.json b/localization/bs.json index d22f138..41766a7 100644 --- a/localization/bs.json +++ b/localization/bs.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Nema referentnih podataka pronađenih u varijabli \"%%referenceExportedVarName%%\" u \"%%referenceFile%%\"", "error-no-provider-specified": "Nije naveden pružatelj usluga.", "error-copying-file-to-temp-dir": "Greška pri kopiranju datoteke u privremeni direktorij: %%error%%", - "supported-providers": "Podržani provajderi su: %%providers%%" + "supported-providers": "Podržani provajderi su: %%providers%%", + "error-no-output-dir-specified": "Nije naveden izlazni direktorij putem '--output-dir', u konfiguracijskoj datoteci (putem 'outputDir') ili u istom direktoriju kao referentna datoteka (\"%%refFileDir%%\")", + "error-dir-create-failed": "Kreiranje direktorija \"%%dir%%\" neuspješno", + "error-no-reference-file-specified": "Nije navedena referentna datoteka putem '--reference-file' ili u konfiguracijskoj datoteci (putem 'referenceFile')" } \ No newline at end of file diff --git a/localization/byn.json b/localization/byn.json index c2bd503..f9d0910 100644 --- a/localization/byn.json +++ b/localization/byn.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "ኣብ ተለዋዋጭ \"%%referenceExportedVarName%%\" ኣብ ፋይል \"%%referenceFile%%\" ምእንታዊ መረዳእታ ኣይተረኽበን", "error-no-provider-specified": "ምንባብ ኣይተመረፀን ኣሎ", "error-copying-file-to-temp-dir": "ሕሳብ ፋይል ናብ ክሳድ ዳይሬክቶሪ ኣብ መንቀሳቀስካ ስሕተት፡ %%error%%", - "supported-providers": "ተደጋጋሚ ኣባላት እዚ እዮ፡ %%providers%%" + "supported-providers": "ተደጋጋሚ ኣባላት እዚ እዮ፡ %%providers%%", + "error-no-output-dir-specified": "ዝኾነ ሕደራ ኣውጸ ርአንት ሓበሬታ ኣብ '--output-dir', ኣብ ዝኾነ ዓይነት ሓሳብ ክፍል (ብ 'outputDir') ወይ ስፍራ ሰነድካ (\"%%refFileDir%%\") ብሕድሪ ከም ዘይተሓበረ", + "error-dir-create-failed": "ዲረክትሪ \"%%dir%%\" ንምፍጣር ኣይተኻኣለን", + "error-no-reference-file-specified": "ኣብ '--reference-file' ወይ ከኣ ኣብ ኮንፊግ ፋይል ('referenceFile') መወከሲ ፋይል ኣይተጠቐሰን" } \ No newline at end of file diff --git a/localization/ca.json b/localization/ca.json index 3fd9423..7e6adaa 100644 --- a/localization/ca.json +++ b/localization/ca.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "No s'han trobat dades de referència a la variable \"%%referenceExportedVarName%%\" a \"%%referenceFile%%\"", "error-no-provider-specified": "No s'ha especificat cap proveïdor.", "error-copying-file-to-temp-dir": "Error en copiar el fitxer al directori temporal: %%error%%", - "supported-providers": "Els proveïdors compatibles són: %%providers%%" + "supported-providers": "Els proveïdors compatibles són: %%providers%%", + "error-no-output-dir-specified": "No s'ha especificat el directori de sortida mitjançant '--output-dir', en un fitxer de configuració (mitjançant 'outputDir'), o en el mateix directori que el teu fitxer de referència (\"%%refFileDir%%\")", + "error-dir-create-failed": "No s'ha pogut crear el directori \"%%dir%%\"", + "error-no-reference-file-specified": "No s'ha especificat cap fitxer de referència mitjançant '--reference-file' o al fitxer de configuració (mitjançant 'referenceFile')" } \ No newline at end of file diff --git a/localization/ccp.json b/localization/ccp.json index 9fa6fac..8211a8f 100644 --- a/localization/ccp.json +++ b/localization/ccp.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "\"%%referenceExportedVarName%%\" \"%%referenceFile%%\" ꯑꯣꯟ ꯂꯩꯄꯥꯏꯕ ꯃꯐꯝꯕ ꯂꯩꯄꯥꯏꯕ ꯃꯤꯇꯩ ꯂꯣꯟꯅꯨ ꯃꯔꯤꯡ ꯑꯣꯟ ꯁꯤꯡ ꯃꯇꯦꯡ.", "error-no-provider-specified": "གསལ་འཛིན་མ་གསལ།", "error-copying-file-to-temp-dir": "བརྡ་ཡིག་འདི་གནས་སྐབས་སྣོན་ཁང་ལ་བརྒྱུད་པ་ནི་འཛོལ་བ་ཡོད།: %%error%%", - "supported-providers": "支持的供应商有:%%providers%%" + "supported-providers": "支持的供应商有:%%providers%%", + "error-no-output-dir-specified": "আউটপুট ডিরেক্টরি উল্লেখ করা অইনি '--output-dir' দোৱারতে, কোনো কনফিগ ফাইলরে ('outputDir' দোৱারতে), বা ত'র রেফারেন্স ফাইলর অইনি ডিরেক্টরিত (\"%%refFileDir%%\")", + "error-dir-create-failed": "𑄘𑄨𑄢𑄬𑄇𑄴𑄑𑄧𑄢𑄨 \"%%dir%%\" 𑄌𑄮𑄚𑄟𑄧𑄘𑄴 𑄎𑄢𑄬 𑄃𑄧𑄇𑄳𑄥𑄧𑄟𑄧𑄖𑄴", + "error-no-reference-file-specified": "𑄢𑄬𑄜𑄢𑄬𑄚𑄴𑄥𑄧 𑄛𑄴𑄃𑄨𑄣𑄴 '--reference-file' 𑄟𑄢𑄴𑄜𑄮𑄖𑄴 𑄃𑄮𑄮𑄚𑄮𑄇𑄴𑄅 𑄇𑄧𑄚𑄴𑄜𑄨𑄉𑄧𑄢𑄬𑄥𑄧𑄚𑄴 𑄜𑄃𑄨𑄣𑄧𑄖𑄴 ('referenceFile' 𑄟𑄢𑄴𑄜𑄮𑄖𑄴) 𑄚𑄨𑄢𑄴𑄘𑄨𑄥𑄴𑄑𑄮 𑄇𑄧𑄢 𑄃𑄮𑄃𑄨𑄉𑄬" } \ No newline at end of file diff --git a/localization/cd-RU.json b/localization/cd-RU.json index 5a0318d..f90fdeb 100644 --- a/localization/cd-RU.json +++ b/localization/cd-RU.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "В переменной \"%%referenceExportedVarName%%\" в файле \"%%referenceFile%%\" не найдены ссылочные данные.", "error-no-provider-specified": "Не указан поставщик услуг.", "error-copying-file-to-temp-dir": "Ошибка копирования файла во временный каталог: %%error%%", - "supported-providers": "Поддерживаемые провайдеры: %%providers%%" + "supported-providers": "Поддерживаемые провайдеры: %%providers%%", + "error-no-output-dir-specified": "Не указан каталог вывода через '--output-dir', в конфигурационном файле (через 'outputDir') или в том же каталоге, что и ваш эталонный файл (\"%%refFileDir%%\")", + "error-dir-create-failed": "Не удалось создать директорию \"%%dir%%\"", + "error-no-reference-file-specified": "Не указан файл для сравнения через '--reference-file' или в конфигурационном файле (через 'referenceFile')" } \ No newline at end of file diff --git a/localization/ceb.json b/localization/ceb.json index a7253ff..fc69128 100644 --- a/localization/ceb.json +++ b/localization/ceb.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Walay nakitang datos sa pakisayran sa variable nga \"%%referenceExportedVarName%%\" sa \"%%referenceFile%%\"", "error-no-provider-specified": "Walay provider nga giila.", "error-copying-file-to-temp-dir": "Sayop sa pagkopya sa file ngadto sa temp directory: %%error%%", - "supported-providers": "Ang mga suportadong provider mao ang: %%providers%%" + "supported-providers": "Ang mga suportadong provider mao ang: %%providers%%", + "error-no-output-dir-specified": "Walay gihisgutang direktoryo sa pag-output pinaagi sa '--output-dir', sa file sa configuration (pinaagi sa 'outputDir'), o sa parehas nga direktoryo sa imong file sa reperensya (\"%%refFileDir%%\")", + "error-dir-create-failed": "Napakyas sa pagmugna og direktoryo \"%%dir%%\"", + "error-no-reference-file-specified": "Walay reference file nga gibutang pinaagi sa '--reference-file' o sa config file (pinaagi sa 'referenceFile')" } \ No newline at end of file diff --git a/localization/cgg.json b/localization/cgg.json index 22064ec..30971d6 100644 --- a/localization/cgg.json +++ b/localization/cgg.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Ntihaine amakuru agereranywa agafatirwaho mu murimo \"%%referenceExportedVarName%%\" muri \"%%referenceFile%%\"", "error-no-provider-specified": "Tihariho omuhereza atarikwatsirwe.", "error-copying-file-to-temp-dir": "Ekyapa kikashobire kuhindurwa omu folda ya temp: %%error%%", - "supported-providers": "Abahingi b'obuhingi abashigikirwe nibo: %%providers%%" + "supported-providers": "Abahingi b'obuhingi abashigikirwe nibo: %%providers%%", + "error-no-output-dir-specified": "Tihaine kuryente ekishengye ky'obushohorozi ekyorekiwe kurabira \"---output-dir\", omu failo erikutegyeka (kurabira \"outputDir\"), nari omu kyishengye kimwe nkarafailo yakwe erikworeka (\"%%refFileDir%%\")", + "error-dir-create-failed": "Kyaremwa kukora folda \"%%dir%%\"", + "error-no-reference-file-specified": "Tihaine fairo y'okurefera erikugambwaho omu '--reference-file' nainga omu fairo ya config (kurabira 'referenceFile')" } \ No newline at end of file diff --git a/localization/chr.json b/localization/chr.json index a4e0619..dcb03c8 100644 --- a/localization/chr.json +++ b/localization/chr.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "\"%%referenceExportedVarName%%\" ᎠᏂᎩᏚᏢᎢ ᎤᏪᏘ ᎤᏓᏅᏖᎸᎢ \"%%referenceFile%%\" ᎠᏂᎩᏚᏢᎢ ᎤᏪᏘ ᎤᏓᏅᏖᎸᎢ", "error-no-provider-specified": "ᎩᏄᎩ ᎤᏂᏚᏍᏗ ᎤᎾᏓᏡᎬ ᎤᏪᏥ ᎤᏍᏗ ᎢᏳᏍᏗ ᎾᏍᏛ ᎤᏙᏢᎩ.", "error-copying-file-to-temp-dir": "ᎤᏩᏒᎢ ᎠᏰᎵᏍᏗᏍᎩ ᎠᏂᏴᏫ ᎤᏪᏥ ᎤᏓᏅᏘ ᎠᏍᎦᏯᎢ: %%error%%", - "supported-providers": "ᎡᎬ ᏗᏂᏍᏗᎢ ᎤᏙᏢᎩᏍᎩᏂᎨᏒᎢ ᎠᏂᎦᏙᎯ: %%providers%%" + "supported-providers": "ᎡᎬ ᏗᏂᏍᏗᎢ ᎤᏙᏢᎩᏍᎩᏂᎨᏒᎢ ᎠᏂᎦᏙᎯ: %%providers%%", + "error-no-output-dir-specified": "ᎥᏝ ᏗᏓᏂᏒᏍᏗ ᎠᏓᏛᏗᎢ ᏱᎬᏂᎨᏒ ᎬᏗ ᎯᎠ '--output-dir', ᏥᎪᏙ ᎯᎠ ᏧᏁᏤᏗ ᎪᏪᎳᏅᎯ (ᎯᎠ 'outputDir') ᎠᏟᎶᏍᏗ, ᎠᎴ ᎾᏍᎩᏯᏉ ᎢᏧᎳᎭ ᎠᏟᏌᏙᏗ ᎾᏍᎩ ᏗᏁᏤᏗ ᎪᏪᎵᎯ (\"%%refFileDir%%\")", + "error-dir-create-failed": "ᎤᏍᏆᏛ ᎾᏍᎩ ᏗᎪᏢᏗ ᎠᏓᏁᎸᎢ \"%%dir%%\"", + "error-no-reference-file-specified": "ᏍᏓ ᏗᏟᎶᏍᏗ ᎦᏁᎳ ᏫᏗᎧᏅᎢ '--reference-file' ᎠᎴᏱᎩ ᎾᎿ ᏗᏎᏍᏗ ᎪᏪᎵ (ᏫᏗᎧᏅᎢ 'referenceFile')" } \ No newline at end of file diff --git a/localization/co.json b/localization/co.json index cbdf165..c50922b 100644 --- a/localization/co.json +++ b/localization/co.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Nisun dati di riferimentu truvatu in a variabile \"%%referenceExportedVarName%%\" in \"%%referenceFile%%\"", "error-no-provider-specified": "Nisun fornitore specificatu.", "error-copying-file-to-temp-dir": "Errore copiendu u schedariu à u cartulare tempurariu: %%error%%", - "supported-providers": "I pruveditori supportati sò: %%providers%%" + "supported-providers": "I pruveditori supportati sò: %%providers%%", + "error-no-output-dir-specified": "Nisun direttoriu d'esciuta specificatu via '--output-dir', in un fugliale di cunfigurazione (via 'outputDir'), o in u stessu direttoriu di u vostru fugliale di riferimentu (\"%%refFileDir%%\")", + "error-dir-create-failed": "Falimentu à creà u cartulare \"%%dir%%\"", + "error-no-reference-file-specified": "Aucu fihceru di referenza specificatu via '--reference-file' or in u fihceru di configurazione (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/config.json b/localization/config.json deleted file mode 100644 index a080bf4..0000000 --- a/localization/config.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "appContextMessage": "An AI-driven translation tool", - "referenceLanguage": "en", - "provider": "openai", - "targetLanguages": [ - "aa", - "af", - "agq", - "ak", - "am", - "ar", - "as", - "asa", - "ast", - "az", - "ba", - "bas", - "be", - "bem", - "bez", - "bg", - "bm", - "bn", - "bo", - "br", - "brx", - "bs", - "byn", - "ca", - "ccp", - "cd-RU", - "ceb", - "cgg", - "chr", - "co", - "cs", - "cu-RU", - "da", - "de-AT", - "de-CH", - "de-DE", - "dua", - "dv", - "dz", - "ebu", - "en", - "es-ES", - "es-MX", - "et", - "eu", - "fr-CA", - "fr-CH", - "fr-FR", - "gsw", - "hi", - "hr", - "hy", - "ja", - "ksf", - "km", - "ku", - "kw", - "my", - "nl", - "ru", - "prs", - "sq", - "swc", - "th", - "tzm-Latn-", - "uk", - "vi", - "zh-Hans", - "zh-Hant" - ] -} diff --git a/localization/cs.json b/localization/cs.json index d2bf0b0..feab9e8 100644 --- a/localization/cs.json +++ b/localization/cs.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Nebyla nalezena žádná referenční data ve proměnné \"%%referenceExportedVarName%%\" v \"%%referenceFile%%\".", "error-no-provider-specified": "Nebyl zadán žádný poskytovatel.", "error-copying-file-to-temp-dir": "Chyba při kopírování souboru do dočasného adresáře: %%error%%", - "supported-providers": "Podporovaní poskytovatelé jsou: %%providers%%" + "supported-providers": "Podporovaní poskytovatelé jsou: %%providers%%", + "error-no-output-dir-specified": "Není zadán výstupní adresář přes \"--output-dir\", v konfiguračním souboru (přes \"outputDir\") ani ve stejném adresáři jako referenční soubor (\"%%refFileDir%%\")", + "error-dir-create-failed": "Vytvoření adresáře \"%%dir%%\" se nezdařilo", + "error-no-reference-file-specified": "Nebyl zadán žádný referenční soubor pomocí '--reference-file' nebo v konfiguračním souboru (prostřednictvím 'referenceFile')" } \ No newline at end of file diff --git a/localization/cu-RU.json b/localization/cu-RU.json index 8c369d6..9b7389d 100644 --- a/localization/cu-RU.json +++ b/localization/cu-RU.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Не обрѣтеноѥ исхоженіѥ данныхъ въ переменной \"%%referenceExportedVarName%%\" въ \"%%referenceFile%%\"", "error-no-provider-specified": "Не указанъ провайдеръ.", "error-copying-file-to-temp-dir": "Ошибъ ꙗко копировати дѣло въ временнꙑи каталогъ: %%error%%", - "supported-providers": "Поддържани доставчици сѫтъ: %%providers%%" + "supported-providers": "Поддържани доставчици сѫтъ: %%providers%%", + "error-no-output-dir-specified": "Не ѹказанъ каталогъ длѧ вꙑвода посрѣдьствомъ '--output-dir', въ файлѣ настроекъ (черезъ 'outputDir'), или въ томъ же каталозѣ, что и эталоннꙑй файлъ (\"%%refFileDir%%\")", + "error-dir-create-failed": "Не ѹдало сѧ создати каталогъ \"%%dir%%\"", + "error-no-reference-file-specified": "Нѣсть ѡ҆прєдѣлѥнъ єтѣрыи фаилъ длѧ поⷣражаниꙗ посрѣⷣствомъ '--reference-file' или въ кѡнфигꙋрационнѣмъ фаилѣ (посрѣⷣствомъ 'referenceFile')" } \ No newline at end of file diff --git a/localization/da.json b/localization/da.json index 3db32cd..42f6417 100644 --- a/localization/da.json +++ b/localization/da.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Ingen referencedata fundet i variablen \"%%referenceExportedVarName%%\" i \"%%referenceFile%%\"", "error-no-provider-specified": "Ingen udbyder angivet.", "error-copying-file-to-temp-dir": "Fejl ved kopiering af fil til midlertidig mappe: %%error%%", - "supported-providers": "Understøttede udbydere er: %%providers%%" + "supported-providers": "Understøttede udbydere er: %%providers%%", + "error-no-output-dir-specified": "Ingen output-mappe angivet via '--output-dir', i en konfigurationsfil (via 'outputDir') eller i samme mappe som din referencefil (\"%%refFileDir%%\")", + "error-dir-create-failed": "Kunne ikke oprette mappen \"%%dir%%\"", + "error-no-reference-file-specified": "Ingen referencefil angivet via '--reference-file' eller i konfigurationsfilen (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/de-AT.json b/localization/de-AT.json index 20d80d8..322ae6e 100644 --- a/localization/de-AT.json +++ b/localization/de-AT.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Keine Referenzdaten in der Variablen \"%%referenceExportedVarName%%\" in \"%%referenceFile%%\" gefunden.", "error-no-provider-specified": "Kein Anbieter angegeben.", "error-copying-file-to-temp-dir": "Fehler beim Kopieren der Datei in das temporäre Verzeichnis: %%error%%", - "supported-providers": "Unterstützte Anbieter sind: %%providers%%" + "supported-providers": "Unterstützte Anbieter sind: %%providers%%", + "error-no-output-dir-specified": "Kein Ausgabeverzeichnis angegeben über '--output-dir', in einer Konfigurationsdatei (über 'outputDir') oder im selben Verzeichnis wie Ihre Referenzdatei (\"%%refFileDir%%\")", + "error-dir-create-failed": "Fehler beim Erstellen des Verzeichnisses \"%%dir%%\"", + "error-no-reference-file-specified": "Keine Referenzdatei über \"--reference-file\" oder in der Konfigurationsdatei (über \"referenceFile\") angegeben" } \ No newline at end of file diff --git a/localization/de-CH.json b/localization/de-CH.json index 706c237..194e374 100644 --- a/localization/de-CH.json +++ b/localization/de-CH.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Keine Referenzdaten in der Variablen \"%%referenceExportedVarName%%\" in \"%%referenceFile%%\" gefunden.", "error-no-provider-specified": "Kein Anbieter angegeben.", "error-copying-file-to-temp-dir": "Fehler beim Kopieren der Datei in das temporäre Verzeichnis: %%error%%", - "supported-providers": "Unterstützte Anbieter sind: %%providers%%" + "supported-providers": "Unterstützte Anbieter sind: %%providers%%", + "error-no-output-dir-specified": "Kein Ausgabeverzeichnis angegeben via '--output-dir', in einer Konfigurationsdatei (via 'outputDir') oder im selben Verzeichnis wie Ihre Referenzdatei (\"%%refFileDir%%\")", + "error-dir-create-failed": "Der Ordner \"%%dir%%\" konnte nicht erstellt werden", + "error-no-reference-file-specified": "Keine Referenzdatei angegeben via '--reference-file' oder in Konfigurationsdatei (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/de-DE.json b/localization/de-DE.json index a721394..6dff5fc 100644 --- a/localization/de-DE.json +++ b/localization/de-DE.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Keine Referenzdaten in der Variablen \"%%referenceExportedVarName%%\" in \"%%referenceFile%%\" gefunden.", "error-no-provider-specified": "Kein Anbieter angegeben.", "error-copying-file-to-temp-dir": "Fehler beim Kopieren der Datei in das temporäre Verzeichnis: %%error%%", - "supported-providers": "Unterstützte Anbieter sind: %%providers%%" + "supported-providers": "Unterstützte Anbieter sind: %%providers%%", + "error-no-output-dir-specified": "Kein Ausgabeverzeichnis angegeben via '--output-dir', in einer Konfigurationsdatei (via 'outputDir') oder im selben Verzeichnis wie Ihre Referenzdatei (\"%%refFileDir%%\")", + "error-dir-create-failed": "Fehler beim Erstellen des Verzeichnisses \"%%dir%%\"", + "error-no-reference-file-specified": "Keine Referenzdatei über '--reference-file' oder in der Konfigurationsdatei (über 'referenceFile') angegeben" } \ No newline at end of file diff --git a/localization/dua.json b/localization/dua.json index 4ada933..0e8a1bb 100644 --- a/localization/dua.json +++ b/localization/dua.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Ewɔ́ déé mɔ́ ná mɔ́nɔ bɛ́ \"%%referenceExportedVarName%%\" na \"%%referenceFile%%\"", "error-no-provider-specified": "Mbɔŋ botɛɛ nɛn mɔ.", "error-copying-file-to-temp-dir": "Ero na kopí fayí na diresɛ́rɛ temp: %%error%%", - "supported-providers": "Batoŋ ba e pɛɛliŋɛ bɛ́: %%providers%%" + "supported-providers": "Batoŋ ba e pɛɛliŋɛ bɛ́: %%providers%%", + "error-no-output-dir-specified": "Kei tɔnalirabi dzasiε hle mi kpa'a tso '--output-dir', alo mimlima wolo (tso 'outputDir'), alo nu ko no nya nyaga mimli wolo chu mi chu nε nya kε je kpaŋ (\"%%refFileDir%%\")", + "error-dir-create-failed": "Mar adwa no ba semu \"%%dir%%\"", + "error-no-reference-file-specified": "Ngɛga bidie a di mɔ tɔɔ ye '--reference-file' ɓii a ɲɛɛ config file ka nyanɔ (ka 'referenceFile')" } \ No newline at end of file diff --git a/localization/dv.json b/localization/dv.json index be8b173..631efed 100644 --- a/localization/dv.json +++ b/localization/dv.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "އެއްވެސް ރެފަރަންސް ޑޭޓާ ނެތި ވެރިއޭބަލް \"%%referenceExportedVarName%%\" އަކީ \"%%referenceFile%%\" އަށް", "error-no-provider-specified": "މައުމުދާއިކޮށް ނެތް.", "error-copying-file-to-temp-dir": "އެރަރގެއާ ފައިލު ޓެމްޕް ޑައިރެކްޓްރީއަށް ނަގާބައިވާނީ: %%error%%", - "supported-providers": "ދެންވެސްވާނީ މިހާރުވެސް ހަމަވާ ދަރިވަރުންތައް: %%providers%%" + "supported-providers": "ދެންވެސްވާނީ މިހާރުވެސް ހަމަވާ ދަރިވަރުންތައް: %%providers%%", + "error-no-output-dir-specified": "ނިކުމެވޭނެ ޑިރެކްޓަރީއެއް ބަޔާންކުރެވިފައެއް ނުވޭ، މިސާލަކަށް '--output-dir' މެދުވެރިކޮށް، ނުވަތަ ކޮންފިގް ފައިލެއްގައި ('outputDir' މެދުވެރިކޮށް)، ނުވަތަ ތިޔަ ރިފަރެންސް ފައިލް ހުރި ޑިރެކްޓަރީއާ އެއް ތަނެއްގައި (\"%%refFileDir%%\")", + "error-dir-create-failed": "ޑައިރެކްޓަރީ \"%%dir%%\" އުފެއްދުމަށް ނާކާމިޔާބުވިއެވެ", + "error-no-reference-file-specified": "ރެފަރެންސް ފައިލް ބަޔާންކޮށްފައި ނުވޭ '--reference-file' މެދުވެރިކޮށް ނުވަތަ ކޮންފިގް ފައިލްގައި ('referenceFile' މެދުވެރިކޮށް)" } \ No newline at end of file diff --git a/localization/dz.json b/localization/dz.json index b805671..bae355d 100644 --- a/localization/dz.json +++ b/localization/dz.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "\"%%referenceExportedVarName%%\" གནས་ཡུལ་ནང་ལས་ \"%%referenceFile%%\" ནང་དུ་གསལ་བཤད་གྲངས་མེད།", "error-no-provider-specified": "བཀའ་གཞི་གཅིག་ཡང་གསལ་བཤད་མེད།", "error-copying-file-to-temp-dir": "ཡིག་ཆ་བསྐྱར་ནང་དུ་བཤུད་པའི་ནུས་མེད།: %%error%%", - "supported-providers": "རྩིས་འཛིན་གྲོགས་པ་རྣམས་ནི། %%providers%%" + "supported-providers": "རྩིས་འཛིན་གྲོགས་པ་རྣམས་ནི། %%providers%%", + "error-no-output-dir-specified": "གཞན་གྱི་ཡིག་ཆ་ཁ་ཕྱོགས་པ་སྲུང་མཛོད་ཁ་བྱང་ '--output-dir' བརྒྱུད་དེ་ཡང་ན་སྒྲིག་བཀོད་ཡིག་ཆའི་ནང་('outputDir' བརྒྱུད) ཡང་ན་ཁྱེད་ཀྱི་ཞིབ་བལྟའི་ཡིག་ཆ་(\"%%refFileDir%%\")མཉམ་དུ་ཡོད་པའི་ཡིག་ཆ་སྲུང་མཛོད་ནང་སྦྱིན་མེད།", + "error-dir-create-failed": "འདི་ \"%%dir%%\"་ཟེར་བའི་དཀར་ཆག་གསར་བཟོ་བྱེད་མ་ཐུབ་པ།", + "error-no-reference-file-specified": "དམིགས་ཅན་གྱི་ཡིག་ཆ་ '-reference-file' བརྒྱུད་ནས་སམ་སྒྲིག་བཀོད་ཡིག་ཆའི་ནང་དུ་ ('referenceFile') བརྒྱུད་ནས་ངེས་བརྗོད་བྱས་མེད།" } \ No newline at end of file diff --git a/localization/ebu.json b/localization/ebu.json index 5c66d92..934647a 100644 --- a/localization/ebu.json +++ b/localization/ebu.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Achọtaghị data ndị a na-ezo aka na ya na agbanwe \"%%referenceExportedVarName%%\" na \"%%referenceFile%%\"", "error-no-provider-specified": "Enweghị onye na-enye ọrụ a kpọtụrụ aha.", "error-copying-file-to-temp-dir": "Njehie n'ịdetuo faịlụ na nchekwa temp: %%error%%", - "supported-providers": "Ndị na-enye ọrụ akwadoro bụ: %%providers%%" + "supported-providers": "Ndị na-enye ọrụ akwadoro bụ: %%providers%%", + "error-no-output-dir-specified": "Gutikorua kwaria kwa kuthirua kuonania ukwithiritwe kugitari '--output-dir', ndene ya faili yaitho (kugitari 'outputDir'), kana ndene ya directory imwe na faili yaku ya reference (\"%%refFileDir%%\")", + "error-dir-create-failed": "Gutemba kwithia dirĩĩtĩri \"%%dir%%\"", + "error-no-reference-file-specified": "Guti reference file itaanetie via '--reference-file' kana kiri config file (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/en.json b/localization/en.json index 564cdd8..7517657 100644 --- a/localization/en.json +++ b/localization/en.json @@ -37,5 +37,8 @@ "error-no-reference-data-in-variable": "No reference data found in variable \"%%referenceExportedVarName%%\" in \"%%referenceFile%%\"", "error-no-provider-specified": "No provider specified.", "error-copying-file-to-temp-dir": "Error copying file to temp directory: %%error%%", - "supported-providers": "Supported providers are: %%providers%%" + "supported-providers": "Supported providers are: %%providers%%", + "error-no-output-dir-specified": "No output directory specified via '--output-dir', in a config file (via 'outputDir'), or in the same directory as your reference file (\"%%refFileDir%%\")", + "error-dir-create-failed": "Failed to create directory \"%%dir%%\"", + "error-no-reference-file-specified": "No reference file specified via '--reference-file' or in config file (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/es-ES.json b/localization/es-ES.json index 2462668..fc55bda 100644 --- a/localization/es-ES.json +++ b/localization/es-ES.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "No se encontraron datos de referencia en la variable \"%%referenceExportedVarName%%\" en \"%%referenceFile%%\"", "error-no-provider-specified": "No se ha especificado ningún proveedor.", "error-copying-file-to-temp-dir": "Error al copiar el archivo al directorio temporal: %%error%%", - "supported-providers": "Los proveedores compatibles son: %%providers%%" + "supported-providers": "Los proveedores compatibles son: %%providers%%", + "error-no-output-dir-specified": "No se ha especificado un directorio de salida mediante '--output-dir', en un archivo de configuración (a través de 'outputDir'), o en el mismo directorio que tu archivo de referencia (\"%%refFileDir%%\")", + "error-dir-create-failed": "Error al crear el directorio \"%%dir%%\"", + "error-no-reference-file-specified": "No se ha especificado un archivo de referencia mediante '--reference-file' o en el archivo de configuración (mediante 'referenceFile')" } \ No newline at end of file diff --git a/localization/es-MX.json b/localization/es-MX.json index ae06c14..7be70e7 100644 --- a/localization/es-MX.json +++ b/localization/es-MX.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "No se encontraron datos de referencia en la variable \"%%referenceExportedVarName%%\" en \"%%referenceFile%%\"", "error-no-provider-specified": "No se especificó ningún proveedor.", "error-copying-file-to-temp-dir": "Error al copiar el archivo al directorio temporal: %%error%%", - "supported-providers": "Los proveedores compatibles son: %%providers%%" + "supported-providers": "Los proveedores compatibles son: %%providers%%", + "error-no-output-dir-specified": "No se ha especificado un directorio de salida a través de '--output-dir', en un archivo de configuración (mediante 'outputDir'), o en el mismo directorio que su archivo de referencia (\"%%refFileDir%%\")", + "error-dir-create-failed": "No se pudo crear el directorio \"%%dir%%\"", + "error-no-reference-file-specified": "No se especificó un archivo de referencia a través de '--reference-file' o en el archivo de configuración (a través de 'referenceFile')" } \ No newline at end of file diff --git a/localization/et.json b/localization/et.json index 1622909..143a80a 100644 --- a/localization/et.json +++ b/localization/et.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Muutujas \"%%referenceExportedVarName%%\" failis \"%%referenceFile%%\" ei leitud viiteandmeid.", "error-no-provider-specified": "Tarnija määramata.", "error-copying-file-to-temp-dir": "Viga faili kopeerimisel ajutisse kausta: %%error%%", - "supported-providers": "Toetatud pakkujad on: %%providers%%" + "supported-providers": "Toetatud pakkujad on: %%providers%%", + "error-no-output-dir-specified": "Väljundkataloogi pole määratud kas \"--output-dir\" parameetri kaudu, konfiguratsioonifailis (välja \"outputDir\" kaudu) ega Teie viitamiseks kasutatud failiga samas kaustas (\"%%refFileDir%%\")", + "error-dir-create-failed": "Kataloogi \"%%dir%%\" loomine ebaõnnestus", + "error-no-reference-file-specified": "Viitekausta pole määratud '--reference-file' kaudu või seadistuste failis (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/eu.json b/localization/eu.json index 807a13c..61dd456 100644 --- a/localization/eu.json +++ b/localization/eu.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Ez da erreferentzia-daturik aurkitu \"%%referenceExportedVarName%%\" aldagaian \"%%referenceFile%%\" fitxategian.", "error-no-provider-specified": "Ez da hornitzaile zehatzik zehaztu.", "error-copying-file-to-temp-dir": "Fitxategia aldi baterako direktoriora kopiatzean errorea: %%error%%", - "supported-providers": "Onartutako hornitzaileak hauek dira: %%providers%%" + "supported-providers": "Onartutako hornitzaileak hauek dira: %%providers%%", + "error-no-output-dir-specified": "Ez da irteera direktorioa zehaztu ez '--output-dir' bidez, ez konfigurazio fitxategi batean (via 'outputDir'), ez eta zure erreferentziazko fitxategiaren direktorio berean ere (\"%%refFileDir%%\")", + "error-dir-create-failed": "\"%%dir%%\" direktorioa sortzen huts egin du", + "error-no-reference-file-specified": "Ez da erreferentziazko fitxategirik zehaztu '--reference-file' bidez edo konfigurazio fitxategian (honen bidez: 'referenceFile')" } \ No newline at end of file diff --git a/localization/fr-CA.json b/localization/fr-CA.json index a75e85e..0e2f646 100644 --- a/localization/fr-CA.json +++ b/localization/fr-CA.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Aucune donnée de référence trouvée dans la variable \"%%referenceExportedVarName%%\" dans \"%%referenceFile%%\"", "error-no-provider-specified": "Aucun fournisseur spécifié.", "error-copying-file-to-temp-dir": "Erreur lors de la copie du fichier vers le répertoire temporaire : %%error%%", - "supported-providers": "Les fournisseurs pris en charge sont : %%providers%%" + "supported-providers": "Les fournisseurs pris en charge sont : %%providers%%", + "error-no-output-dir-specified": "Aucun répertoire de sortie spécifié via '--output-dir', dans un fichier de configuration (via 'outputDir'), ou dans le même répertoire que votre fichier de référence (\"%%refFileDir%%\")", + "error-dir-create-failed": "Échec de création du répertoire « %%dir%% »", + "error-no-reference-file-specified": "Aucun fichier de référence spécifié via '--reference-file' ou dans le fichier de configuration (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/fr-CH.json b/localization/fr-CH.json index 4c2e1c1..2c4537e 100644 --- a/localization/fr-CH.json +++ b/localization/fr-CH.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Aucune donnée de référence trouvée dans la variable \"%%referenceExportedVarName%%\" dans \"%%referenceFile%%\"", "error-no-provider-specified": "Aucun fournisseur spécifié.", "error-copying-file-to-temp-dir": "Erreur lors de la copie du fichier dans le répertoire temporaire : %%error%%", - "supported-providers": "Les fournisseurs pris en charge sont : %%providers%%" + "supported-providers": "Les fournisseurs pris en charge sont : %%providers%%", + "error-no-output-dir-specified": "Aucun répertoire de sortie spécifié via '--output-dir', dans un fichier de configuration (via 'outputDir'), ou dans le même répertoire que votre fichier de référence (\"%%refFileDir%%\")", + "error-dir-create-failed": "Échec de création du répertoire \"%%dir%%\"", + "error-no-reference-file-specified": "Aucun fichier de référence spécifié via '--reference-file' ou dans le fichier de configuration (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/fr-FR.json b/localization/fr-FR.json index 6c335b5..6025041 100644 --- a/localization/fr-FR.json +++ b/localization/fr-FR.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Aucune donnée de référence trouvée dans la variable \"%%referenceExportedVarName%%\" dans \"%%referenceFile%%\"", "error-no-provider-specified": "Aucun fournisseur spécifié.", "error-copying-file-to-temp-dir": "Erreur lors de la copie du fichier vers le répertoire temporaire : %%error%%", - "supported-providers": "Les fournisseurs pris en charge sont : %%providers%%" + "supported-providers": "Les fournisseurs pris en charge sont : %%providers%%", + "error-no-output-dir-specified": "Aucun répertoire de sortie spécifié via '--output-dir', dans un fichier de configuration (via 'outputDir'), ou dans le même répertoire que votre fichier de référence (\"%%refFileDir%%\")", + "error-dir-create-failed": "Échec lors de la création du répertoire \"%%dir%%\"", + "error-no-reference-file-specified": "Aucun fichier de référence spécifié via '--reference-file' ou dans le fichier de configuration (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/gsw.json b/localization/gsw.json index f0da085..ebd3724 100644 --- a/localization/gsw.json +++ b/localization/gsw.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Kei Referenzdate gfunde in Variable \"%%referenceExportedVarName%%\" in \"%%referenceFile%%\"", "error-no-provider-specified": "Kei Aabieter aagee.", "error-copying-file-to-temp-dir": "Fähler biim Kopiere vo de Datei i ds temporäre Verzeichnis: %%error%%", - "supported-providers": "Unterstützti Aabieter sind: %%providers%%" + "supported-providers": "Unterstützti Aabieter sind: %%providers%%", + "error-no-output-dir-specified": "Kei Ausgab-Verzeichnis bstimmt übr '--output-dir', inere Config-Datei (übr 'outputDir'), oder im gliiche Verzeichnis wie dini Referänz-Datei (\"%%refFileDir%%\")", + "error-dir-create-failed": "Han nöd chönne s Verzeichnis \"%%dir%%\" erstelle", + "error-no-reference-file-specified": "Kei Referänzdatei aagee via '--reference-file' oder i de Konfigurationsdatei (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/hi.json b/localization/hi.json index 324c9ab..63e7010 100644 --- a/localization/hi.json +++ b/localization/hi.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "चर \"%%referenceExportedVarName%%\" में \"%%referenceFile%%\" से कोई संदर्भ डेटा नहीं मिला।", "error-no-provider-specified": "कोई प्रदाता निर्दिष्ट नहीं है।", "error-copying-file-to-temp-dir": "फ़ाइल को टेम्प डायरेक्टरी में कॉपी करने में त्रुटि: %%error%%", - "supported-providers": "समर्थित प्रदाता हैं: %%providers%%" + "supported-providers": "समर्थित प्रदाता हैं: %%providers%%", + "error-no-output-dir-specified": "कोई आउटपुट डायरेक्टरी नहीं दी गई है '--output-dir' के माध्यम से, एक कॉन्फिग फ़ाइल में (via 'outputDir'), या आपकी संदर्भ फ़ाइल (\"%%refFileDir%%\") के समान डायरेक्टरी में", + "error-dir-create-failed": "\"%%dir%%\" निर्देशिका बनाने में विफल", + "error-no-reference-file-specified": "संदर्भ फ़ाइल '--reference-file' के माध्यम से या कॉन्फ़िग फ़ाइल में (via 'referenceFile') निर्दिष्ट नहीं की गई है" } \ No newline at end of file diff --git a/localization/hr.json b/localization/hr.json index 3e19d58..864a659 100644 --- a/localization/hr.json +++ b/localization/hr.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Nema referentnih podataka u varijabli \"%%referenceExportedVarName%%\" u \"%%referenceFile%%\"", "error-no-provider-specified": "Nije naveden pružatelj usluge.", "error-copying-file-to-temp-dir": "Greška pri kopiranju datoteke u privremeni direktorij: %%error%%", - "supported-providers": "Podržani pružatelji usluga su: %%providers%%" + "supported-providers": "Podržani pružatelji usluga su: %%providers%%", + "error-no-output-dir-specified": "Nije naveden izlazni direktorij putem '--output-dir', u konfiguracijskoj datoteci (putem 'outputDir') ili u istom direktoriju kao i vaša referentna datoteka (\"%%refFileDir%%\")", + "error-dir-create-failed": "Neuspješno stvaranje direktorija \"%%dir%%\"", + "error-no-reference-file-specified": "Nije navedena referentna datoteka putem '--reference-file' ili u konfiguracijskoj datoteci (putem 'referenceFile')" } \ No newline at end of file diff --git a/localization/hy.json b/localization/hy.json index bf90311..6e32745 100644 --- a/localization/hy.json +++ b/localization/hy.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Չի հայտնաբերվել որևէ հղումային տվյալ \"%%referenceExportedVarName%%\" փոփոխականում \"%%referenceFile%%\" ֆայլում։", "error-no-provider-specified": "Մատակարար չի նշված։", "error-copying-file-to-temp-dir": "Ֆայլի պատճենման սխալ դեպի ժամանակավոր թղթապանակը՝ %%error%%", - "supported-providers": "Սպասարկող մատակարարներն են՝ %%providers%%" + "supported-providers": "Սպասարկող մատակարարներն են՝ %%providers%%", + "error-no-output-dir-specified": "Ելքային պապանակը նշված չէ ո՛չ '--output-dir' միջոցով, ո՛չ կարգավորման ֆայլում (այսպես՝ 'outputDir'), և ո՛չ էլ նույն պապանակում, ինչ որ ձեր հղումային ֆայլն է (\"%%refFileDir%%\")", + "error-dir-create-failed": "Չհաջողվեց ստեղծել «%%dir%%» թղթապանակը", + "error-no-reference-file-specified": "Հղման ֆայլը նշված չէ '--reference-file' միջոցով կամ կոնֆիգուրացիոն ֆայլում (միջոցով 'referenceFile')" } \ No newline at end of file diff --git a/localization/ja.json b/localization/ja.json index 1126c67..5f94cd3 100644 --- a/localization/ja.json +++ b/localization/ja.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "変数「%%referenceExportedVarName%%」の参照データが「%%referenceFile%%」で見つかりませんでした。", "error-no-provider-specified": "プロバイダーが指定されていません。", "error-copying-file-to-temp-dir": "一時ディレクトリへのファイルコピー中にエラーが発生しました: %%error%%", - "supported-providers": "対応しているプロバイダーは次のとおりです: %%providers%%" + "supported-providers": "対応しているプロバイダーは次のとおりです: %%providers%%", + "error-no-output-dir-specified": "'--output-dir'、設定ファイル('outputDir'経由)、または参照ファイルと同じディレクトリ(\"%%refFileDir%%\")を通じて出力ディレクトリが指定されていません", + "error-dir-create-failed": "ディレクトリ「%%dir%%」の作成に失敗しました", + "error-no-reference-file-specified": "参照ファイルが'--reference-file'オプションまたは設定ファイル('referenceFile'経由)で指定されていません" } \ No newline at end of file diff --git a/localization/km.json b/localization/km.json index 684074a..dc5954d 100644 --- a/localization/km.json +++ b/localization/km.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "មិនមានទិន្នន័យយោងត្រូវបានរកឃើញក្នុងអថេរ \"%%referenceExportedVarName%%\" នៅក្នុង \"%%referenceFile%%\" ទេ។", "error-no-provider-specified": "មិនបានបញ្ជាក់អ្នកផ្តល់សេវាទេ។", "error-copying-file-to-temp-dir": "កំហុសក្នុងការចម្លងឯកសារទៅថតបណ្តោះអាសន្ន៖ %%error%%", - "supported-providers": "ក្រុមហ៊ុនដែលគាំទ្រមាន៖ %%providers%%" + "supported-providers": "ក្រុមហ៊ុនដែលគាំទ្រមាន៖ %%providers%%", + "error-no-output-dir-specified": "មិនបានបញ្ជាក់ថតឯកសារបញ្ចេញតាមរយៈ '--output-dir' ក្នុងឯកសារកំណត់រចនាសម្ព័ន្ធ (តាមរយៈ 'outputDir') ឬនៅក្នុងថតតែមួយជាមួយឯកសារយោងរបស់អ្នក (\"%%refFileDir%%\")", + "error-dir-create-failed": "បរាជ័យក្នុងការបង្កើតថត \"%%dir%%\"", + "error-no-reference-file-specified": "មិនមានបញ្ជាក់ឯកសារយោងតាមរយៈ '--reference-file' ឬក្នុងឯកសារកំណត់រចនាសម្ព័ន្ធ (តាមរយៈ 'referenceFile')" } \ No newline at end of file diff --git a/localization/ksf.json b/localization/ksf.json index 98d4645..17c77aa 100644 --- a/localization/ksf.json +++ b/localization/ksf.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Pa gen done referans trouv nan variab \"%%referenceExportedVarName%%\" nan \"%%referenceFile%%\"", "error-no-provider-specified": "Aucun fournisseur spécifié.", "error-copying-file-to-temp-dir": "Erɛr kɔpi fayil tɔ tɛmp dirɛktɔri: %%error%%", - "supported-providers": "Bâ pɛ́ na nkap: %%providers%%" + "supported-providers": "Bâ pɛ́ na nkap: %%providers%%", + "error-no-output-dir-specified": "Ngɑ̀ŋà yi a bǝ̆ yi ntsò kɑ̌s ŏ nga fɛ̀'lǝ̀ njwí mbɛ'tǝ via '--output-dir', ŏ ri nshwùn mbweliŋ (via 'outputDir'), kɛ bɛ sí ŏ sɑ́ŋ ntǝ̀n abǝ̆ fɑ́il yi a bɛ̌ njwí (\"%%refFileDir%%\")", + "error-dir-create-failed": "Kéʼ ghî pʉʼsǝ́ mǝ ntʉk kày lǝtèʼ \"%%dir%%\"", + "error-no-reference-file-specified": "Ntáŋ féh cút ajiŋti i a mbә nә tésә via '--reference-file' andә nә fájil kɔnfík (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/ku.json b/localization/ku.json index 3634bd2..0ffd317 100644 --- a/localization/ku.json +++ b/localization/ku.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Daneyên referansê di guherbarê \"%%referenceExportedVarName%%\" de di \"%%referenceFile%%\" de nehatine dîtin.", "error-no-provider-specified": "Nabêjêrek diyarkirî ne.", "error-copying-file-to-temp-dir": "هەڵە لە کۆچکردنی پەڕگە بۆ بوخچەی کاتی: %%error%%", - "supported-providers": "Pêşkêşkarên piştgirîkirî: %%providers%%" + "supported-providers": "Pêşkêşkarên piştgirîkirî: %%providers%%", + "error-no-output-dir-specified": "Ti rêya '--output-dir' ve ti peldanka derketinê nehatiye diyarkirin, di pelê veavakirinê de (bi rêya 'outputDir'), an jî di heman peldankê de wek pelê te yê referansê (\"%%refFileDir%%\")", + "error-dir-create-failed": "Nehêna ku peldanka \"%%dir%%\" were afirandin", + "error-no-reference-file-specified": "Ti riya '--reference-file' an di faylê configuration de (bi riya 'referenceFile') tu pelê referansê nehatiye diyarkirin" } \ No newline at end of file diff --git a/localization/kw.json b/localization/kw.json index 6d72d4b..80f050a 100644 --- a/localization/kw.json +++ b/localization/kw.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Nyns eus data kevrennow kavadow a-barth an varians \"%%referenceExportedVarName%%\" yn \"%%referenceFile%%\"", "error-no-provider-specified": "Nyns eus provyder spesifys.", "error-copying-file-to-temp-dir": "Gwall ow kopia restren dhe'n gever temporyel: %%error%%", - "supported-providers": "An provydoryans skoodhys yw: %%providers%%" + "supported-providers": "An provydoryans skoodhys yw: %%providers%%", + "error-no-output-dir-specified": "Nyns eus Directory iswedh res styrys dre '--output-dir', yn restren cumyans (dre 'outputDir'), po y'n keth directory avel dha restren wonisogethel (\"%%refFileDir%%\")", + "error-dir-create-failed": "Gwerdhys dhe wul restorva \"%%dir%%\"", + "error-no-reference-file-specified": "Nyns eus restren-davarn res via '--reference-file' po y'n restren gefunssyans (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/my.json b/localization/my.json index 64cbea4..18c38b8 100644 --- a/localization/my.json +++ b/localization/my.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "\"%%referenceExportedVarName%%\" အမည်ရှိ ကိန်းဂဏန်းတွင် \"%%referenceFile%%\" တွင် ကိုးကားချက်ဒေတာများ မတွေ့ရှိပါ။", "error-no-provider-specified": "ပံ့ပိုးသူမျှမသတ်မှတ်ထားပါ။", "error-copying-file-to-temp-dir": "ဖိုင်ကို temp ဖိုင်တွဲသို့ ကူးယူနေစဉ် အမှားဖြစ်ပွားခဲ့သည်။ %%error%%", - "supported-providers": "ထောက်ပံ့ပေးသူများမှာ။ %%providers%%" + "supported-providers": "ထောက်ပံ့ပေးသူများမှာ။ %%providers%%", + "error-no-output-dir-specified": "သင့်ရဲ့ထုတ်လုပ်မှုဒါရိုက်ထရီကို '--output-dir' မှတစ်ဆင့်၊ config ဖိုင်တွင် ('outputDir' မှတစ်ဆင့်) သို့မဟုတ် သင့်ရဲ့ရည်ညွှန်းဖိုင်နှင့် ဒါရိုက်ထရီတူတွင် (\"%%refFileDir%%\") သတ်မှတ်ပေးထားခြင်းမရှိပါ", + "error-dir-create-failed": "ဒါရိုက်ထရီ \"%%dir%%\" ကို ဖန်တီးရန် မအောင်မြင်ပါ", + "error-no-reference-file-specified": "လုပ်ဆောင်ချက်ဖိုင် '--reference-file' သို့မဟုတ် config ဖိုင် (ဖြင့် 'referenceFile') မှတဆင့် သတ်မှတ်ထားခြင်းမရှိပါ" } \ No newline at end of file diff --git a/localization/nl.json b/localization/nl.json index 9d78cd4..a9fda6d 100644 --- a/localization/nl.json +++ b/localization/nl.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Geen referentiegegevens gevonden in variabele \"%%referenceExportedVarName%%\" in \"%%referenceFile%%\"", "error-no-provider-specified": "Geen aanbieder opgegeven.", "error-copying-file-to-temp-dir": "Fout bij het kopiëren van bestand naar tijdelijke map: %%error%%", - "supported-providers": "Ondersteunde aanbieders zijn: %%providers%%" + "supported-providers": "Ondersteunde aanbieders zijn: %%providers%%", + "error-no-output-dir-specified": "Geen uitvoermap opgegeven via '--output-dir', in een configuratiebestand (via 'outputDir') of in dezelfde map als uw referentiebestand (\"%%refFileDir%%\")", + "error-dir-create-failed": "Kan map \"%%dir%%\" niet aanmaken", + "error-no-reference-file-specified": "Geen referentiebestand gespecificeerd via '--reference-file' of in configuratiebestand (via 'referenceFile')" } \ No newline at end of file diff --git a/localization/prs.json b/localization/prs.json index bbf9b74..e5f87b0 100644 --- a/localization/prs.json +++ b/localization/prs.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "هیچ داده‌ی مرجعی در متغیر \"%%referenceExportedVarName%%\" در \"%%referenceFile%%\" یافت نشد.", "error-no-provider-specified": "هیچ فراهم‌کننده‌ای مشخص نشده است.", "error-copying-file-to-temp-dir": "خطا در کپی کردن فایل به دایرکتوری موقت: %%error%%", - "supported-providers": "پشتیبانی شده تامین کنندگان عبارتند از: %%providers%%" + "supported-providers": "پشتیبانی شده تامین کنندگان عبارتند از: %%providers%%", + "error-no-output-dir-specified": "هیچ مسیر خروجی از طریق '--output-dir'، در فایل پیکربندی (از طریق 'outputDir')، یا در همان دایرکتوری که فایل مرجع شما قرار دارد (\"%%refFileDir%%\") مشخص نشده است", + "error-dir-create-failed": "نتوانست دایرکتوری \"%%dir%%\" را ایجاد کند", + "error-no-reference-file-specified": "فایل مرجع از طریق '--reference-file' یا در فایل تنظیمات (از طریق 'referenceFile') مشخص نشده است" } \ No newline at end of file diff --git a/localization/reference.js b/localization/reference.js index e97c9a7..d614dd2 100644 --- a/localization/reference.js +++ b/localization/reference.js @@ -33,6 +33,9 @@ export default { 'error-no-target-languages': `No target languages specified. Use --target-languages option or add 'targetLanguages' to your config file`, 'error-no-reference-data-in-variable': `No reference data found in variable "%%referenceExportedVarName%%" in "%%referenceFile%%"`, 'error-copying-file-to-temp-dir': `Error copying file to temp directory: %%error%%`, + 'error-no-output-dir-specified': `No output directory specified via '--output-dir', in a config file (via 'outputDir'), or in the same directory as your reference file ("%%refFileDir%%")`, + 'error-dir-create-failed': `Failed to create directory "%%dir%%"`, + 'error-no-reference-file-specified': `No reference file specified via '--reference-file' or in config file (via 'referenceFile')`, 'supported-providers': `Supported providers are: %%providers%%` } diff --git a/localization/ru.json b/localization/ru.json index 157cc99..7d8e100 100644 --- a/localization/ru.json +++ b/localization/ru.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Не найдены данные для ссылки в переменной \"%%referenceExportedVarName%%\" в файле \"%%referenceFile%%\"", "error-no-provider-specified": "Не указан провайдер.", "error-copying-file-to-temp-dir": "Ошибка копирования файла во временный каталог: %%error%%", - "supported-providers": "Поддерживаемые провайдеры: %%providers%%" + "supported-providers": "Поддерживаемые провайдеры: %%providers%%", + "error-no-output-dir-specified": "Не указан каталог вывода через '--output-dir', в конфигурационном файле (через 'outputDir') или в том же каталоге, что и ваш ссылочный файл (\"%%refFileDir%%\")", + "error-dir-create-failed": "Не удалось создать директорию \"%%dir%%\"", + "error-no-reference-file-specified": "Файл для сравнения не указан через '--reference-file' или в конфигурационном файле (через 'referenceFile')" } \ No newline at end of file diff --git a/localization/sq.json b/localization/sq.json index 0581279..9973595 100644 --- a/localization/sq.json +++ b/localization/sq.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Nuk u gjetën të dhëna referimi në variablin \"%%referenceExportedVarName%%\" në \"%%referenceFile%%\"", "error-no-provider-specified": "Nuk është specifikuar asnjë ofrues.", "error-copying-file-to-temp-dir": "Gabim në kopjimin e skedarit në drejtorinë temp: %%error%%", - "supported-providers": "Ofruesit e mbështetur janë: %%providers%%" + "supported-providers": "Ofruesit e mbështetur janë: %%providers%%", + "error-no-output-dir-specified": "Asnjë direktorium daljeje nuk është specifikuar përmes '--output-dir', në një skedar konfigurimi (përmes 'outputDir'), ose në të njëjtin direktorium me skedarin tuaj të referencës (\"%%refFileDir%%\")", + "error-dir-create-failed": "Dështoi në krijimin e direktorisë \"%%dir%%\"", + "error-no-reference-file-specified": "Asnjë skedar reference nuk është specifikuar nëpërmjet '--reference-file' ose në skedarin e konfigurimit (nëpërmjet 'referenceFile')" } \ No newline at end of file diff --git a/localization/swc.json b/localization/swc.json index 8c31d29..4101a22 100644 --- a/localization/swc.json +++ b/localization/swc.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Hakuna data ya rejea iliyopatikana katika kigezo \"%%referenceExportedVarName%%\" katika \"%%referenceFile%%\"", "error-no-provider-specified": "Hakuna mtoa huduma aliyetajwa.", "error-copying-file-to-temp-dir": "Kosa la kunakili faili kwenda kwenye saraka ya muda: %%error%%", - "supported-providers": "Watoa huduma wanaoungwa mkono ni: %%providers%%" + "supported-providers": "Watoa huduma wanaoungwa mkono ni: %%providers%%", + "error-no-output-dir-specified": "Hakuna saraka ya kutoa iliyobainishwa kupitia '--output-dir', katika faili ya usanidi (kupitia 'outputDir'), au katika saraka moja na faili yako ya kumbukumbu (\"%%refFileDir%%\")", + "error-dir-create-failed": "Imeshindwa kuunda saraka \"%%dir%%\"", + "error-no-reference-file-specified": "Hakuna faili ya marejeleo iliyotajwa kupitia '--reference-file' au kwenye faili ya usanidi (kupitia 'referenceFile')" } \ No newline at end of file diff --git a/localization/th.json b/localization/th.json index 24b2c5d..ceb623b 100644 --- a/localization/th.json +++ b/localization/th.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "ไม่พบข้อมูลอ้างอิงในตัวแปร \"%%referenceExportedVarName%%\" ใน \"%%referenceFile%%\"", "error-no-provider-specified": "ไม่ได้ระบุผู้ให้บริการ", "error-copying-file-to-temp-dir": "เกิดข้อผิดพลาดในการคัดลอกไฟล์ไปยังไดเรกทอรีชั่วคราว: %%error%%", - "supported-providers": "ผู้ให้บริการที่รองรับคือ: %%providers%%" + "supported-providers": "ผู้ให้บริการที่รองรับคือ: %%providers%%", + "error-no-output-dir-specified": "ไม่ได้ระบุไดเรกทอรีสำหรับการส่งออกผ่าน '--output-dir', ในไฟล์การกำหนดค่า (ผ่าน 'outputDir') หรือในไดเรกทอรีเดียวกับไฟล์อ้างอิงของคุณ (\"%%refFileDir%%\")", + "error-dir-create-failed": "ไม่สามารถสร้างไดเรกทอรี \"%%dir%%\"", + "error-no-reference-file-specified": "ไม่ได้ระบุไฟล์อ้างอิงผ่าน '--reference-file' หรือในไฟล์การกำหนดค่า (ผ่าน 'referenceFile')" } \ No newline at end of file diff --git a/localization/tzm-Latn-.json b/localization/tzm-Latn-.json index a873d3b..94e9b6e 100644 --- a/localization/tzm-Latn-.json +++ b/localization/tzm-Latn-.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Ulac isaffen n umeskar deg umutti \"%%referenceExportedVarName%%\" deg \"%%referenceFile%%\"", "error-no-provider-specified": "Ulac amdan yettwassen.", "error-copying-file-to-temp-dir": "Tuccḍa n ufus ar tmudda n ugurru temp: %%error%%", - "supported-providers": "Isaffen yettwaskaren d-iyuran: %%providers%%" + "supported-providers": "Isaffen yettwaskaren d-iyuran: %%providers%%", + "error-no-output-dir-specified": "Ur ittwaḥdid umluɣ n uffuɣ s '--output-dir', tammara n usuddes (s 'outputDir'), niɣ ɣ umluɣ-nnes am ufaylu n usmmaqql (\"%%refFileDir%%\")", + "error-dir-create-failed": "Ur yizmir ad ysnulfu akaram \"%%dir%%\"", + "error-no-reference-file-specified": "Ur illi afaylu n timmẓilt yuran s '--reference-file' niɣ ɣ ufaylu n uswuddu (s 'referenceFile')" } \ No newline at end of file diff --git a/localization/uk.json b/localization/uk.json index 7e84952..8ae6add 100644 --- a/localization/uk.json +++ b/localization/uk.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Не знайдено даних у змінній \"%%referenceExportedVarName%%\" у файлі \"%%referenceFile%%\"", "error-no-provider-specified": "Не вказано жодного провайдера.", "error-copying-file-to-temp-dir": "Помилка копіювання файлу в тимчасову папку: %%error%%", - "supported-providers": "Підтримувані провайдери: %%providers%%" + "supported-providers": "Підтримувані провайдери: %%providers%%", + "error-no-output-dir-specified": "Не вказано каталог виводу через '--output-dir', у файлі конфігурації (через 'outputDir') або в тому ж каталозі, що й ваш еталонний файл (\"%%refFileDir%%\")", + "error-dir-create-failed": "Не вдалося створити каталог \"%%dir%%\"", + "error-no-reference-file-specified": "Не вказано файл посилань через '--reference-file' або у конфігураційному файлі (через 'referenceFile')" } \ No newline at end of file diff --git a/localization/vi.json b/localization/vi.json index c0d1a36..6a5e4b3 100644 --- a/localization/vi.json +++ b/localization/vi.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "Không tìm thấy dữ liệu tham chiếu trong biến \"%%referenceExportedVarName%%\" trong \"%%referenceFile%%\"", "error-no-provider-specified": "Không có nhà cung cấp được chỉ định.", "error-copying-file-to-temp-dir": "Lỗi khi sao chép tệp vào thư mục tạm thời: %%error%%", - "supported-providers": "Các nhà cung cấp được hỗ trợ là: %%providers%%" + "supported-providers": "Các nhà cung cấp được hỗ trợ là: %%providers%%", + "error-no-output-dir-specified": "Không có thư mục đầu ra được chỉ định qua '--output-dir', trong tệp cấu hình (qua 'outputDir'), hoặc trong cùng thư mục với tệp tham chiếu của bạn (\"%%refFileDir%%\")", + "error-dir-create-failed": "Không thể tạo thư mục \"%%dir%%\"", + "error-no-reference-file-specified": "Không có tệp tham chiếu nào được chỉ định qua '--reference-file' hoặc trong tệp cấu hình (qua 'referenceFile')" } \ No newline at end of file diff --git a/localization/zh-Hans.json b/localization/zh-Hans.json index 0d4fbe0..48a8b95 100644 --- a/localization/zh-Hans.json +++ b/localization/zh-Hans.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "未在 \"%%referenceFile%%\" 中找到变量 \"%%referenceExportedVarName%%\" 的参考数据。", "error-no-provider-specified": "未指定提供者。", "error-copying-file-to-temp-dir": "复制文件到临时目录时出错:%%error%%", - "supported-providers": "支持的提供商有:%%providers%%" + "supported-providers": "支持的提供商有:%%providers%%", + "error-no-output-dir-specified": "未通过\"--output-dir\"、配置文件(通过\"outputDir\")或在与您的参考文件(\"%%refFileDir%%\")相同的目录中指定输出目录", + "error-dir-create-failed": "创建目录\"%%dir%%\"失败", + "error-no-reference-file-specified": "未通过\"--reference-file\"或在配置文件中(通过\"referenceFile\")指定参考文件" } \ No newline at end of file diff --git a/localization/zh-Hant.json b/localization/zh-Hant.json index 1ae8b5f..a5cbc84 100644 --- a/localization/zh-Hant.json +++ b/localization/zh-Hant.json @@ -35,5 +35,8 @@ "error-no-reference-data-in-variable": "未在 \"%%referenceFile%%\" 中找到變數 \"%%referenceExportedVarName%%\" 的參考數據。", "error-no-provider-specified": "未指定提供者。", "error-copying-file-to-temp-dir": "複製文件到臨時目錄時出錯:%%error%%", - "supported-providers": "支援的供應商包括:%%providers%%" + "supported-providers": "支援的供應商包括:%%providers%%", + "error-no-output-dir-specified": "未通過 '--output-dir' 指定輸出目錄,也未在配置文件中(通過 'outputDir')指定,或未指定為與參考文件(\"%%refFileDir%%\")相同的目錄", + "error-dir-create-failed": "無法建立目錄「%%dir%%」", + "error-no-reference-file-specified": "未通過 '--reference-file' 或在配置檔案中(通過 'referenceFile')指定參考檔案" } \ No newline at end of file From ceaf47c10ff58812a9bf68581ec197bf70db4453 Mon Sep 17 00:00:00 2001 From: Jonathan Lippincott Date: Fri, 18 Apr 2025 21:55:21 +0200 Subject: [PATCH 08/10] npm: simplifies script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 916e625..00a7f00 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "test:targeted": "ALT_TEST=1 mocha --grep 'multiple target'", "test": "ALT_TEST=1 mocha", "test:coverage": "ALT_TEST=1 nyc mocha", - "localize-display-strings": "./alt.mjs translate --reference-file localization/reference.js", + "localize-display-strings": "./alt.mjs", "print-all-help": "rm -f help.txt && (./alt.mjs help && echo -e '\n---\n' && ./alt.mjs help translate && echo -e '\n---\n' && ./alt.mjs help list-models) > help.txt", "generate-toc": "./scripts/gh-md-toc --insert README.md && rm -f README.md.orig.* README.md.toc.* && echo '\n**README.md updated with new table of contents**'" }, From 0625faa238b26692a9dc49c302fbcb0adf8faf86 Mon Sep 17 00:00:00 2001 From: Jonathan Lippincott Date: Fri, 18 Apr 2025 21:55:52 +0200 Subject: [PATCH 09/10] docs: toc --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6271d3b..b794b33 100644 --- a/README.md +++ b/README.md @@ -23,10 +23,10 @@ * [Display language](#display-language) * [Usage](#usage) * [Examples](#examples) - * [Example I](#example-i) + * [Example I: ALT's localized display strings](#example-i-alts-localized-display-strings) * [Example II](#example-ii) * [Example III](#example-iii) - * [Example: ALT's localized display strings](#example-alts-localized-display-strings) + * [Example III](#example-iii-1) * [Formatting](#formatting) * [Translation rules](#translation-rules) * [Additional notes](#additional-notes) @@ -37,7 +37,7 @@ * [Feedback](#feedback) - + From ca27071ace3654b9c8830cec4f2f74cc2f146f1b Mon Sep 17 00:00:00 2001 From: Jonathan Lippincott Date: Fri, 18 Apr 2025 22:06:59 +0200 Subject: [PATCH 10/10] test: fixes test --- test/translate-command.test.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test/translate-command.test.js b/test/translate-command.test.js index 03e2772..97f71d0 100644 --- a/test/translate-command.test.js +++ b/test/translate-command.test.js @@ -41,7 +41,9 @@ describe('translate command', () => { '-k', 'msg-test', '-d' - ]) + ], { + cwd: 'test' + }) // Check command executed successfully expect(result.exitCode).to.equal(0) @@ -95,7 +97,9 @@ describe('translate command', () => { 'fr-FR,es-ES', '-k', 'msg-test' - ]) + ], { + cwd: 'test' + }) console.log(result.command)