@trilogy-ds/locales 0.0.2-calendar-fr → 0.0.2-timepicker-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/lib/breadcrumb.js CHANGED
@@ -1,3 +1,3 @@
1
1
  export default {
2
- accessibilityLabel: 'Fil d’Ariane',
2
+ accessibilityLabel: 'Breadcrumb',
3
3
  };
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ days: string[];
3
+ months: string[];
4
+ };
5
+ export default _default;
@@ -0,0 +1,4 @@
1
+ export default {
2
+ days: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
3
+ months: ['Jan.', 'Feb.', 'Mar.', 'Apr.', 'May', 'Jun.', 'Jul.', 'Aug.', 'Sep.', 'Oct.', 'Nov.', 'Dec.'],
4
+ };
package/lib/index.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  import breadcrumbLocale from './breadcrumb';
2
+ import calendarLocale from './calendar';
2
3
  import inputLocale from './input';
3
4
  import modalLocale from './modal';
4
5
  import otpLocale from './otp';
5
- export { breadcrumbLocale, inputLocale, modalLocale, otpLocale };
6
+ import timePickerLocale from './timePicker';
7
+ export { breadcrumbLocale, calendarLocale, inputLocale, modalLocale, otpLocale, timePickerLocale };
package/lib/index.js CHANGED
@@ -1,5 +1,7 @@
1
1
  import breadcrumbLocale from './breadcrumb';
2
+ import calendarLocale from './calendar';
2
3
  import inputLocale from './input';
3
4
  import modalLocale from './modal';
4
5
  import otpLocale from './otp';
5
- export { breadcrumbLocale, inputLocale, modalLocale, otpLocale };
6
+ import timePickerLocale from './timePicker';
7
+ export { breadcrumbLocale, calendarLocale, inputLocale, modalLocale, otpLocale, timePickerLocale };
package/lib/input.js CHANGED
@@ -1,4 +1,4 @@
1
1
  export default {
2
- showPassword: 'Afficher le mot de passe',
3
- hidePassword: 'Cacher le mot de passe',
2
+ showPassword: 'Show password',
3
+ hidePassword: 'Hide password',
4
4
  };
package/lib/modal.js CHANGED
@@ -1,3 +1,3 @@
1
1
  export default {
2
- accessibilityLabelButtonClose: 'Fermer',
2
+ accessibilityLabelButtonClose: 'Close',
3
3
  };
package/lib/otp.js CHANGED
@@ -1,3 +1,3 @@
1
1
  export default {
2
- inputTitle: 'Chiffre :x sur :y du code à usage unique',
2
+ inputTitle: 'Number :x of :y of the one-time code',
3
3
  };
@@ -0,0 +1,5 @@
1
+ declare const _default: {
2
+ hours: string;
3
+ minutes: string;
4
+ };
5
+ export default _default;
@@ -0,0 +1,4 @@
1
+ export default {
2
+ hours: 'Hours',
3
+ minutes: 'Min',
4
+ };
package/package.json CHANGED
@@ -1,17 +1,22 @@
1
1
  {
2
- "name": "@trilogy-ds/locales",
3
- "version": "0.0.2-calendar-fr",
4
- "description": "Trilogy assets include traductions (fr) 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
- ]
2
+ "name": "@trilogy-ds/locales",
3
+ "version": "0.0.2-timepicker-en",
4
+ "description": "Trilogy assets include traductions (en) for accessibility",
5
+ "author": "Bouygues Telecom",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/BouyguesTelecom/trilogy",
9
+ "directory": "packages/locales/en"
10
+ },
11
+ "license": "UNLICENSED",
12
+ "main": "lib/index.js",
13
+ "types": "lib/index.d.ts",
14
+ "scripts": {
15
+ "build": "rimraf ./lib && tsc"
16
+ },
17
+ "files": [
18
+ "lib",
19
+ "package.json",
20
+ "README.md"
21
+ ]
17
22
  }