bb-relay 0.0.36 → 0.0.38
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/{Locale-DnNmuMZq.d.mts → Locale-DQ4a71QR.d.mts} +21 -0
- package/dist/{Locale-DnNmuMZq.d.ts → Locale-DQ4a71QR.d.ts} +21 -0
- package/dist/editor.d.mts +2 -4
- package/dist/editor.d.ts +2 -4
- package/dist/locale.d.mts +2 -2
- package/dist/locale.d.ts +2 -2
- package/dist/locale.js +44 -2
- package/dist/locale.mjs +44 -2
- package/package.json +1 -1
- package/src/locales/en-GB.ts +21 -0
- package/src/locales/fr-FR.ts +21 -0
- package/src/types/editor/Nav.ts +11 -12
- package/src/types/editor/Settings.ts +8 -2
|
@@ -154,6 +154,27 @@ declare const enGB: {
|
|
|
154
154
|
app: string;
|
|
155
155
|
settings: string;
|
|
156
156
|
preferences: string;
|
|
157
|
+
fullscreen: string;
|
|
158
|
+
undo: string;
|
|
159
|
+
redo: string;
|
|
160
|
+
select: string;
|
|
161
|
+
"select.all": string;
|
|
162
|
+
"deselect.all": string;
|
|
163
|
+
"invert.selection": string;
|
|
164
|
+
rename: string;
|
|
165
|
+
"issues.report": string;
|
|
166
|
+
"feature.request": string;
|
|
167
|
+
zen: string;
|
|
168
|
+
"direction.toggle": string;
|
|
169
|
+
tips: string;
|
|
170
|
+
changelog: string;
|
|
171
|
+
"app.quit": string;
|
|
172
|
+
project: string;
|
|
173
|
+
"project.sync": string;
|
|
174
|
+
"project.close": string;
|
|
175
|
+
"help.starting": string;
|
|
176
|
+
"developer.tools.toggle": string;
|
|
177
|
+
socials: string;
|
|
157
178
|
};
|
|
158
179
|
|
|
159
180
|
type Language = keyof typeof enGB;
|
|
@@ -154,6 +154,27 @@ declare const enGB: {
|
|
|
154
154
|
app: string;
|
|
155
155
|
settings: string;
|
|
156
156
|
preferences: string;
|
|
157
|
+
fullscreen: string;
|
|
158
|
+
undo: string;
|
|
159
|
+
redo: string;
|
|
160
|
+
select: string;
|
|
161
|
+
"select.all": string;
|
|
162
|
+
"deselect.all": string;
|
|
163
|
+
"invert.selection": string;
|
|
164
|
+
rename: string;
|
|
165
|
+
"issues.report": string;
|
|
166
|
+
"feature.request": string;
|
|
167
|
+
zen: string;
|
|
168
|
+
"direction.toggle": string;
|
|
169
|
+
tips: string;
|
|
170
|
+
changelog: string;
|
|
171
|
+
"app.quit": string;
|
|
172
|
+
project: string;
|
|
173
|
+
"project.sync": string;
|
|
174
|
+
"project.close": string;
|
|
175
|
+
"help.starting": string;
|
|
176
|
+
"developer.tools.toggle": string;
|
|
177
|
+
socials: string;
|
|
157
178
|
};
|
|
158
179
|
|
|
159
180
|
type Language = keyof typeof enGB;
|
package/dist/editor.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { C as Commit } from './Commit-PdsjrKSG.mjs';
|
|
2
2
|
export { a as FileStat, F as FolderContent, b as FolderStat } from './FolderStat-Bhmwwc0t.mjs';
|
|
3
3
|
export { F as FileContent } from './FileContent-CXlulSZq.mjs';
|
|
4
|
-
import { L as Language, a as Locale } from './Locale-
|
|
4
|
+
import { L as Language, a as Locale } from './Locale-DQ4a71QR.mjs';
|
|
5
5
|
export { R as Result } from './Result-BLbZLEgX.mjs';
|
|
6
6
|
|
|
7
7
|
type CopyArg = {
|
|
@@ -29,7 +29,7 @@ interface MenuContent {
|
|
|
29
29
|
onClick?: () => void;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
type Nav = "file-explorer" | "checkpoints" | "plugins" | "settings" | "remote" | "help" | "settings" | "
|
|
32
|
+
type Nav = "file-explorer" | "checkpoints" | "plugins" | "settings" | "remote" | "help" | "settings" | "dev";
|
|
33
33
|
|
|
34
34
|
type Route = "welcome" | "project" | "new-project" | "settings" | "updates";
|
|
35
35
|
|
|
@@ -38,7 +38,6 @@ declare const SHORTCUTS: Language[];
|
|
|
38
38
|
type ShortcutID = Extract<Language, (typeof SHORTCUTS)[number]>;
|
|
39
39
|
type Shortcut = {
|
|
40
40
|
id: ShortcutID;
|
|
41
|
-
name: string;
|
|
42
41
|
description: string;
|
|
43
42
|
keys: string[];
|
|
44
43
|
};
|
|
@@ -49,7 +48,6 @@ type Settings = {
|
|
|
49
48
|
autoUpdate: boolean;
|
|
50
49
|
direction: "ltr" | "rtl";
|
|
51
50
|
showAllFile: boolean;
|
|
52
|
-
trashBehaviour: "permanent" | "trash";
|
|
53
51
|
shortcuts: Shortcut[];
|
|
54
52
|
theme: string;
|
|
55
53
|
isDev: boolean;
|
package/dist/editor.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { C as Commit } from './Commit-PdsjrKSG.js';
|
|
2
2
|
export { a as FileStat, F as FolderContent, b as FolderStat } from './FolderStat-Bhmwwc0t.js';
|
|
3
3
|
export { F as FileContent } from './FileContent-CXlulSZq.js';
|
|
4
|
-
import { L as Language, a as Locale } from './Locale-
|
|
4
|
+
import { L as Language, a as Locale } from './Locale-DQ4a71QR.js';
|
|
5
5
|
export { R as Result } from './Result-BLbZLEgX.js';
|
|
6
6
|
|
|
7
7
|
type CopyArg = {
|
|
@@ -29,7 +29,7 @@ interface MenuContent {
|
|
|
29
29
|
onClick?: () => void;
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
type Nav = "file-explorer" | "checkpoints" | "plugins" | "settings" | "remote" | "help" | "settings" | "
|
|
32
|
+
type Nav = "file-explorer" | "checkpoints" | "plugins" | "settings" | "remote" | "help" | "settings" | "dev";
|
|
33
33
|
|
|
34
34
|
type Route = "welcome" | "project" | "new-project" | "settings" | "updates";
|
|
35
35
|
|
|
@@ -38,7 +38,6 @@ declare const SHORTCUTS: Language[];
|
|
|
38
38
|
type ShortcutID = Extract<Language, (typeof SHORTCUTS)[number]>;
|
|
39
39
|
type Shortcut = {
|
|
40
40
|
id: ShortcutID;
|
|
41
|
-
name: string;
|
|
42
41
|
description: string;
|
|
43
42
|
keys: string[];
|
|
44
43
|
};
|
|
@@ -49,7 +48,6 @@ type Settings = {
|
|
|
49
48
|
autoUpdate: boolean;
|
|
50
49
|
direction: "ltr" | "rtl";
|
|
51
50
|
showAllFile: boolean;
|
|
52
|
-
trashBehaviour: "permanent" | "trash";
|
|
53
51
|
shortcuts: Shortcut[];
|
|
54
52
|
theme: string;
|
|
55
53
|
isDev: boolean;
|
package/dist/locale.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as Language } from './Locale-
|
|
2
|
-
export { a as Locale, e as enGB } from './Locale-
|
|
1
|
+
import { L as Language } from './Locale-DQ4a71QR.mjs';
|
|
2
|
+
export { a as Locale, e as enGB } from './Locale-DQ4a71QR.mjs';
|
|
3
3
|
|
|
4
4
|
declare const frFR: {
|
|
5
5
|
[key in Language]: string;
|
package/dist/locale.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { L as Language } from './Locale-
|
|
2
|
-
export { a as Locale, e as enGB } from './Locale-
|
|
1
|
+
import { L as Language } from './Locale-DQ4a71QR.js';
|
|
2
|
+
export { a as Locale, e as enGB } from './Locale-DQ4a71QR.js';
|
|
3
3
|
|
|
4
4
|
declare const frFR: {
|
|
5
5
|
[key in Language]: string;
|
package/dist/locale.js
CHANGED
|
@@ -154,7 +154,28 @@ var enGB = {
|
|
|
154
154
|
"app.restart": "Restart",
|
|
155
155
|
app: "App",
|
|
156
156
|
settings: "Settings",
|
|
157
|
-
preferences: "Preferences"
|
|
157
|
+
preferences: "Preferences",
|
|
158
|
+
fullscreen: "Fullscreen",
|
|
159
|
+
undo: "Undo",
|
|
160
|
+
redo: "Redo",
|
|
161
|
+
select: "Select",
|
|
162
|
+
"select.all": "Select All",
|
|
163
|
+
"deselect.all": "Deselect All",
|
|
164
|
+
"invert.selection": "Invert Selection",
|
|
165
|
+
rename: "Rename",
|
|
166
|
+
"issues.report": "Report Issues",
|
|
167
|
+
"feature.request": "Feature Request",
|
|
168
|
+
zen: "Zen mode",
|
|
169
|
+
"direction.toggle": "Toggle LTR/RTL",
|
|
170
|
+
tips: "Tips",
|
|
171
|
+
changelog: "Release notes",
|
|
172
|
+
"app.quit": "Quit app",
|
|
173
|
+
project: "Project",
|
|
174
|
+
"project.sync": "Sync project",
|
|
175
|
+
"project.close": "Close project",
|
|
176
|
+
"help.starting": "Getting started",
|
|
177
|
+
"developer.tools.toggle": "Toggle Developer tools",
|
|
178
|
+
socials: "Socials"
|
|
158
179
|
};
|
|
159
180
|
var en_GB_default = enGB;
|
|
160
181
|
|
|
@@ -314,7 +335,28 @@ var frFR = {
|
|
|
314
335
|
"app.restart": "Red\xE9marrer",
|
|
315
336
|
app: "App",
|
|
316
337
|
settings: "Param\xE8tres",
|
|
317
|
-
preferences: "Pr\xE9f\xE9rences"
|
|
338
|
+
preferences: "Pr\xE9f\xE9rences",
|
|
339
|
+
fullscreen: "Plein \xE9cran",
|
|
340
|
+
undo: "Annuler",
|
|
341
|
+
redo: "R\xE9tablir",
|
|
342
|
+
select: "S\xE9lectionner",
|
|
343
|
+
"select.all": "Tout s\xE9lectionner",
|
|
344
|
+
"deselect.all": "Tout d\xE9s\xE9lectionner",
|
|
345
|
+
"invert.selection": "Inverser la s\xE9lection",
|
|
346
|
+
rename: "Renommer",
|
|
347
|
+
"issues.report": "Signaler un probl\xE8me",
|
|
348
|
+
"feature.request": "Demande de fonctionnalit\xE9",
|
|
349
|
+
zen: "Activer le mode Zen",
|
|
350
|
+
"direction.toggle": "Basculer LTR/RTL",
|
|
351
|
+
tips: "Astuces",
|
|
352
|
+
changelog: "Notes de version",
|
|
353
|
+
"app.quit": "Quitter l'application",
|
|
354
|
+
project: "Projet",
|
|
355
|
+
"project.sync": "Synchroniser le projet",
|
|
356
|
+
"project.close": "Fermer le projet",
|
|
357
|
+
"help.starting": "Getting started",
|
|
358
|
+
"developer.tools.toggle": "(D\xE9s)activer les outils de d\xE9v",
|
|
359
|
+
socials: "Sociaux"
|
|
318
360
|
};
|
|
319
361
|
var fr_FR_default = frFR;
|
|
320
362
|
|
package/dist/locale.mjs
CHANGED
|
@@ -154,7 +154,28 @@ var enGB = {
|
|
|
154
154
|
"app.restart": "Restart",
|
|
155
155
|
app: "App",
|
|
156
156
|
settings: "Settings",
|
|
157
|
-
preferences: "Preferences"
|
|
157
|
+
preferences: "Preferences",
|
|
158
|
+
fullscreen: "Fullscreen",
|
|
159
|
+
undo: "Undo",
|
|
160
|
+
redo: "Redo",
|
|
161
|
+
select: "Select",
|
|
162
|
+
"select.all": "Select All",
|
|
163
|
+
"deselect.all": "Deselect All",
|
|
164
|
+
"invert.selection": "Invert Selection",
|
|
165
|
+
rename: "Rename",
|
|
166
|
+
"issues.report": "Report Issues",
|
|
167
|
+
"feature.request": "Feature Request",
|
|
168
|
+
zen: "Zen mode",
|
|
169
|
+
"direction.toggle": "Toggle LTR/RTL",
|
|
170
|
+
tips: "Tips",
|
|
171
|
+
changelog: "Release notes",
|
|
172
|
+
"app.quit": "Quit app",
|
|
173
|
+
project: "Project",
|
|
174
|
+
"project.sync": "Sync project",
|
|
175
|
+
"project.close": "Close project",
|
|
176
|
+
"help.starting": "Getting started",
|
|
177
|
+
"developer.tools.toggle": "Toggle Developer tools",
|
|
178
|
+
socials: "Socials"
|
|
158
179
|
};
|
|
159
180
|
var en_GB_default = enGB;
|
|
160
181
|
|
|
@@ -314,7 +335,28 @@ var frFR = {
|
|
|
314
335
|
"app.restart": "Red\xE9marrer",
|
|
315
336
|
app: "App",
|
|
316
337
|
settings: "Param\xE8tres",
|
|
317
|
-
preferences: "Pr\xE9f\xE9rences"
|
|
338
|
+
preferences: "Pr\xE9f\xE9rences",
|
|
339
|
+
fullscreen: "Plein \xE9cran",
|
|
340
|
+
undo: "Annuler",
|
|
341
|
+
redo: "R\xE9tablir",
|
|
342
|
+
select: "S\xE9lectionner",
|
|
343
|
+
"select.all": "Tout s\xE9lectionner",
|
|
344
|
+
"deselect.all": "Tout d\xE9s\xE9lectionner",
|
|
345
|
+
"invert.selection": "Inverser la s\xE9lection",
|
|
346
|
+
rename: "Renommer",
|
|
347
|
+
"issues.report": "Signaler un probl\xE8me",
|
|
348
|
+
"feature.request": "Demande de fonctionnalit\xE9",
|
|
349
|
+
zen: "Activer le mode Zen",
|
|
350
|
+
"direction.toggle": "Basculer LTR/RTL",
|
|
351
|
+
tips: "Astuces",
|
|
352
|
+
changelog: "Notes de version",
|
|
353
|
+
"app.quit": "Quitter l'application",
|
|
354
|
+
project: "Projet",
|
|
355
|
+
"project.sync": "Synchroniser le projet",
|
|
356
|
+
"project.close": "Fermer le projet",
|
|
357
|
+
"help.starting": "Getting started",
|
|
358
|
+
"developer.tools.toggle": "(D\xE9s)activer les outils de d\xE9v",
|
|
359
|
+
socials: "Sociaux"
|
|
318
360
|
};
|
|
319
361
|
var fr_FR_default = frFR;
|
|
320
362
|
export {
|
package/package.json
CHANGED
package/src/locales/en-GB.ts
CHANGED
|
@@ -163,6 +163,27 @@ export const enGB = {
|
|
|
163
163
|
app: "App",
|
|
164
164
|
settings: "Settings",
|
|
165
165
|
preferences: "Preferences",
|
|
166
|
+
fullscreen: "Fullscreen",
|
|
167
|
+
undo: "Undo",
|
|
168
|
+
redo: "Redo",
|
|
169
|
+
select: "Select",
|
|
170
|
+
"select.all": "Select All",
|
|
171
|
+
"deselect.all": "Deselect All",
|
|
172
|
+
"invert.selection": "Invert Selection",
|
|
173
|
+
rename: "Rename",
|
|
174
|
+
"issues.report": "Report Issues",
|
|
175
|
+
"feature.request": "Feature Request",
|
|
176
|
+
zen: "Zen mode",
|
|
177
|
+
"direction.toggle": "Toggle LTR/RTL",
|
|
178
|
+
tips: "Tips",
|
|
179
|
+
changelog: "Release notes",
|
|
180
|
+
"app.quit": "Quit app",
|
|
181
|
+
project: "Project",
|
|
182
|
+
"project.sync": "Sync project",
|
|
183
|
+
"project.close": "Close project",
|
|
184
|
+
"help.starting": "Getting started",
|
|
185
|
+
"developer.tools.toggle": "Toggle Developer tools",
|
|
186
|
+
socials: "Socials",
|
|
166
187
|
};
|
|
167
188
|
|
|
168
189
|
export default enGB;
|
package/src/locales/fr-FR.ts
CHANGED
|
@@ -166,6 +166,27 @@ export const frFR: { [key in Language]: string } = {
|
|
|
166
166
|
app: "App",
|
|
167
167
|
settings: "Paramètres",
|
|
168
168
|
preferences: "Préférences",
|
|
169
|
+
fullscreen: "Plein écran",
|
|
170
|
+
undo: "Annuler",
|
|
171
|
+
redo: "Rétablir",
|
|
172
|
+
select: "Sélectionner",
|
|
173
|
+
"select.all": "Tout sélectionner",
|
|
174
|
+
"deselect.all": "Tout désélectionner",
|
|
175
|
+
"invert.selection": "Inverser la sélection",
|
|
176
|
+
rename: "Renommer",
|
|
177
|
+
"issues.report": "Signaler un problème",
|
|
178
|
+
"feature.request": "Demande de fonctionnalité",
|
|
179
|
+
zen: "Activer le mode Zen",
|
|
180
|
+
"direction.toggle": "Basculer LTR/RTL",
|
|
181
|
+
tips: "Astuces",
|
|
182
|
+
changelog: "Notes de version",
|
|
183
|
+
"app.quit": "Quitter l'application",
|
|
184
|
+
project: "Projet",
|
|
185
|
+
"project.sync": "Synchroniser le projet",
|
|
186
|
+
"project.close": "Fermer le projet",
|
|
187
|
+
"help.starting": "Getting started",
|
|
188
|
+
"developer.tools.toggle": "(Dés)activer les outils de dév",
|
|
189
|
+
socials: "Sociaux",
|
|
169
190
|
};
|
|
170
191
|
|
|
171
192
|
export default frFR;
|
package/src/types/editor/Nav.ts
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
type Nav =
|
|
2
|
-
| "file-explorer"
|
|
3
|
-
| "checkpoints"
|
|
4
|
-
| "plugins"
|
|
5
|
-
| "settings"
|
|
6
|
-
| "remote"
|
|
7
|
-
| "help"
|
|
8
|
-
| "settings"
|
|
9
|
-
| "
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
export default Nav;
|
|
1
|
+
type Nav =
|
|
2
|
+
| "file-explorer"
|
|
3
|
+
| "checkpoints"
|
|
4
|
+
| "plugins"
|
|
5
|
+
| "settings"
|
|
6
|
+
| "remote"
|
|
7
|
+
| "help"
|
|
8
|
+
| "settings"
|
|
9
|
+
| "dev";
|
|
10
|
+
|
|
11
|
+
export default Nav;
|
|
@@ -13,6 +13,14 @@ const SHORTCUTS: Language[] = [
|
|
|
13
13
|
"cut",
|
|
14
14
|
"paste",
|
|
15
15
|
"file.location.open",
|
|
16
|
+
"sidebar.toggle",
|
|
17
|
+
"fullscreen",
|
|
18
|
+
"undo",
|
|
19
|
+
"redo",
|
|
20
|
+
"select",
|
|
21
|
+
"select.all",
|
|
22
|
+
"deselect.all",
|
|
23
|
+
"invert.selection",
|
|
16
24
|
] as const;
|
|
17
25
|
|
|
18
26
|
export default SHORTCUTS;
|
|
@@ -21,7 +29,6 @@ export type ShortcutID = Extract<Language, (typeof SHORTCUTS)[number]>;
|
|
|
21
29
|
|
|
22
30
|
export type Shortcut = {
|
|
23
31
|
id: ShortcutID;
|
|
24
|
-
name: string;
|
|
25
32
|
description: string;
|
|
26
33
|
keys: string[];
|
|
27
34
|
};
|
|
@@ -33,7 +40,6 @@ export type Settings = {
|
|
|
33
40
|
autoUpdate: boolean;
|
|
34
41
|
direction: "ltr" | "rtl";
|
|
35
42
|
showAllFile: boolean;
|
|
36
|
-
trashBehaviour: "permanent" | "trash";
|
|
37
43
|
shortcuts: Shortcut[];
|
|
38
44
|
theme: string;
|
|
39
45
|
isDev: boolean;
|