Fix plugin (#1979)

* Fix plugin

* fix typo

* another typo

* typos
This commit is contained in:
Utku 2024-01-23 23:11:13 +03:00 committed by GitHub
parent eae5d8eb09
commit d9ef836349
5 changed files with 6 additions and 6 deletions

View File

@ -101,7 +101,8 @@ This project is using what I'm calling the **"PRRTT"** stack (Prisma, Rust, Reac
- `client`: A [TypeScript](https://www.typescriptlang.org/) client library to handle dataflow via RPC between UI and the Rust core.
- `ui`: A [React](https://reactjs.org) Shared component library.
- `interface`: The complete user interface in React (used by apps `desktop`, `web` and `landing`)
- `config`: `eslint` configurations (includes `eslint-config-next`, `eslint-config-prettier` and all `tsconfig.json` configs used throughout the monorepo.
- `config`: `eslint` configurations (includes `eslint-config-next`, `eslint-config-prettier` and all `tsconfig.json` configs used throughout the monorepo).
- `macos`: A [Swift](https://developer.apple.com/swift/) Native binary for MacOS system extensions.
- `ios`: A [Swift](https://developer.apple.com/swift/) Native binary (planned).
- `windows`: A [C#](https://docs.microsoft.com/en-us/dotnet/csharp/) Native binary (planned).

View File

@ -446,8 +446,8 @@ impl StatefulJob for IndexerJobInit {
vec![
ScanProgress::ChunkCount(more_steps.len() - to_walk_count),
ScanProgress::Message(format!(
"Scanned more {} files or directories; \
{} more directories to scan and more {} entries to update",
"Scanned {} more files or directories; \
{} more directories to scan and {} more entries to update",
new_metadata.total_paths,
to_walk_count,
new_metadata.total_updated_paths

View File

@ -104,7 +104,7 @@ export function ErrorPage({
};
if (!submessage && debug.enabled)
submessage = 'Check the console (CMD/CTRL + OPTION + i) for stack trace.';
submessage = 'Check the console (CMD/CTRL + OPTION/SHIFT + i) for stack trace.';
return (
<div

View File

@ -14,7 +14,6 @@ i18n
.init({
resources,
load: 'languageOnly',
// resources,
fallbackLng: 'en',
ns: ['common'],
fallbackNS: 'common',

View File

@ -10,7 +10,7 @@
"https://cdn.jsdelivr.net/npm/@inlang/message-lint-rule-missing-translation@1/dist/index.js"
],
"plugin.inlang.i18next": {
"pathPattern": "./apps/desktop/src/public/locales/{languageTag}/common.json"
"pathPattern": "./interface/locales/{languageTag}/common.json"
},
"plugin.inlang.standardLintRules": {
"identicalPattern": "off"