@trilogy-ds/locales 0.0.1-calendar-en

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/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # Package @trilogy-ds/locales
2
+
3
+ ## Description
4
+ This package contains localization files for the `@en` (English) and `@fr` (French) languages used in applications.
5
+
6
+ ## Installation
7
+ You can install this package via npm using one of the following commands:
8
+ ```bash
9
+ npm install @trilogy-ds/locales@en
10
+ npm install @trilogy-ds/locales@fr
@@ -0,0 +1,4 @@
1
+ declare const _default: {
2
+ accessibilityLabel: string;
3
+ };
4
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export default {
2
+ accessibilityLabel: 'Breadcrumb',
3
+ };
package/lib/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ import breadcrumbLocale from './breadcrumb';
2
+ import inputLocale from './input';
3
+ import modalLocale from './modal';
4
+ import otpLocale from './otp';
5
+ export { breadcrumbLocale, inputLocale, modalLocale, otpLocale };
package/lib/index.js ADDED
@@ -0,0 +1,5 @@
1
+ import breadcrumbLocale from './breadcrumb';
2
+ import inputLocale from './input';
3
+ import modalLocale from './modal';
4
+ import otpLocale from './otp';
5
+ export { breadcrumbLocale, inputLocale, modalLocale, otpLocale };
package/lib/input.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ showPassword: string;
3
+ hidePassword: string;
4
+ };
5
+ export default _default;
package/lib/input.js ADDED
@@ -0,0 +1,4 @@
1
+ export default {
2
+ showPassword: 'Show password',
3
+ hidePassword: 'Hide password',
4
+ };
package/lib/modal.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ declare const _default: {
2
+ accessibilityLabelButtonClose: string;
3
+ };
4
+ export default _default;
package/lib/modal.js ADDED
@@ -0,0 +1,3 @@
1
+ export default {
2
+ accessibilityLabelButtonClose: 'Close',
3
+ };
package/lib/otp.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ declare const _default: {
2
+ inputTitle: string;
3
+ };
4
+ export default _default;
package/lib/otp.js ADDED
@@ -0,0 +1,3 @@
1
+ export default {
2
+ inputTitle: 'Number :x of :y of the one-time code',
3
+ };
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@trilogy-ds/locales",
3
+ "version": "0.0.1-calendar-en",
4
+ "description": "Trilogy assets include traductions (en) for accessibility",
5
+ "author": "Bouygues Telecom",
6
+ "license": "UNLICENSED",
7
+ "main": "lib/index.js",
8
+ "types": "lib/index.d.ts",
9
+ "scripts": {
10
+ "build": "rimraf ./lib && tsc"
11
+ },
12
+ "files": [
13
+ "lib",
14
+ "package.json",
15
+ "README.md"
16
+ ]
17
+ }