@adminforth/i18n 1.3.6 → 1.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +0 -3
- package/index.ts +0 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13,9 +13,6 @@ import path from 'path';
|
|
|
13
13
|
import fs from 'fs-extra';
|
|
14
14
|
import chokidar from 'chokidar';
|
|
15
15
|
import { AsyncQueue } from '@sapphire/async-queue';
|
|
16
|
-
console.log = (...args) => {
|
|
17
|
-
process.stdout.write(args.join(" ") + "\n");
|
|
18
|
-
};
|
|
19
16
|
const processFrontendMessagesQueue = new AsyncQueue();
|
|
20
17
|
const SLAVIC_PLURAL_EXAMPLES = {
|
|
21
18
|
uk: 'яблук | Яблуко | Яблука | Яблук', // zero | singular | 2-4 | 5+
|
package/index.ts
CHANGED
|
@@ -8,10 +8,6 @@ import chokidar from 'chokidar';
|
|
|
8
8
|
import { AsyncQueue } from '@sapphire/async-queue';
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
console.log = (...args) => {
|
|
12
|
-
process.stdout.write(args.join(" ") + "\n");
|
|
13
|
-
};
|
|
14
|
-
|
|
15
11
|
const processFrontendMessagesQueue = new AsyncQueue();
|
|
16
12
|
|
|
17
13
|
const SLAVIC_PLURAL_EXAMPLES = {
|