orc-shared 5.10.0-dev.2 → 5.10.0-dev.21
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/actions/metadata.js +30 -11
- package/dist/actions/requestsApi.js +10 -1
- package/dist/components/AppFrame/About.js +136 -100
- package/dist/components/AppFrame/Anchor.js +45 -21
- package/dist/components/AppFrame/AppFrame.js +53 -31
- package/dist/components/AppFrame/Help.js +35 -15
- package/dist/components/AppFrame/MenuItem.js +148 -114
- package/dist/components/AppFrame/Preferences.js +136 -97
- package/dist/components/AppFrame/Sidebar.js +51 -28
- package/dist/components/AppFrame/Topbar.js +61 -36
- package/dist/components/ColumnWrapper.js +28 -5
- package/dist/components/Culture.js +33 -14
- package/dist/components/DropMenu/Menu.js +79 -45
- package/dist/components/DropMenu/index.js +34 -29
- package/dist/components/Form/Combination.js +45 -16
- package/dist/components/Form/Field.js +57 -38
- package/dist/components/Form/FieldElements.js +0 -11
- package/dist/components/Form/Fieldset.js +47 -19
- package/dist/components/Form/Form.js +22 -9
- package/dist/components/Form/FormElement.js +40 -7
- package/dist/components/Form/Inputs/Button.js +63 -18
- package/dist/components/Form/Inputs/ReadOnly.js +50 -27
- package/dist/components/{AppFrame/ApplicationSelector/Header.js → Form/Inputs/Selector.js} +30 -31
- package/dist/components/Form/Inputs/Text.js +20 -37
- package/dist/components/Form/Inputs/Toggles.js +39 -40
- package/dist/components/Form/Inputs/index.js +2 -13
- package/dist/components/MaterialUI/DataDisplay/PredefinedElements/Placeholder.js +31 -11
- package/dist/components/MaterialUI/DataDisplay/PredefinedElements/SectionToolbar.js +89 -0
- package/dist/components/MaterialUI/DataDisplay/Table.js +109 -18
- package/dist/components/MaterialUI/DataDisplay/TableProps.js +5 -1
- package/dist/components/MaterialUI/DataDisplay/TableWithInMemoryPaging.js +198 -0
- package/dist/components/MaterialUI/DataDisplay/TooltippedElements/MultipleLinesText.js +4 -1
- package/dist/components/MaterialUI/Inputs/DatePicker.js +14 -14
- package/dist/components/MaterialUI/Inputs/PredefinedElements/SearchControl.js +1 -0
- package/dist/components/MaterialUI/Inputs/Select.js +2 -0
- package/dist/components/MaterialUI/Inputs/SelectProps.js +2 -0
- package/dist/components/MaterialUI/Inputs/Switch.js +17 -1
- package/dist/components/MaterialUI/Inputs/SwitchProps.js +2 -0
- package/dist/components/MaterialUI/Inputs/TimePicker.js +14 -21
- package/dist/components/MaterialUI/hocs/withDeferredTooltip.js +3 -1
- package/dist/components/MaterialUI/muiThemes.js +2 -1
- package/dist/components/Provision.js +1 -1
- package/dist/constants.js +2 -1
- package/dist/content/iconsSheet.svg +740 -116
- package/dist/hocs/withScrollBox.js +27 -12
- package/dist/hooks/useDaysAndMonthsLocalization.js +77 -0
- package/dist/hooks/useInMemoryPaging.js +135 -0
- package/dist/hooks/useMultipleFieldEditState.js +12 -3
- package/dist/reducers/metadata.js +6 -0
- package/dist/schemas/metadata.js +9 -1
- package/dist/selectors/locale.js +1 -0
- package/dist/selectors/metadata.js +14 -11
- package/dist/sharedMessages.js +184 -0
- package/dist/utils/ListHelper.js +271 -0
- package/dist/utils/comparisonHelper.js +185 -0
- package/dist/utils/propertyBagHelper.js +3 -1
- package/dist/utils/timezoneHelper.js +18 -31
- package/package.json +4 -3
- package/src/actions/metadata.js +11 -0
- package/src/actions/metadata.test.js +27 -0
- package/src/actions/requestsApi.js +6 -0
- package/src/components/AppFrame/About.js +97 -117
- package/src/components/AppFrame/About.test.js +128 -90
- package/src/components/AppFrame/Anchor.js +34 -36
- package/src/components/AppFrame/Anchor.test.js +5 -68
- package/src/components/AppFrame/AppFrame.js +31 -40
- package/src/components/AppFrame/AppFrame.test.js +424 -445
- package/src/components/AppFrame/Help.js +23 -20
- package/src/components/AppFrame/Help.test.js +3 -3
- package/src/components/AppFrame/MenuItem.js +106 -126
- package/src/components/AppFrame/MenuItem.test.js +78 -169
- package/src/components/AppFrame/Preferences.js +110 -98
- package/src/components/AppFrame/Preferences.test.js +115 -219
- package/src/components/AppFrame/Sidebar.js +39 -41
- package/src/components/AppFrame/Sidebar.test.js +88 -168
- package/src/components/AppFrame/Topbar.js +59 -52
- package/src/components/AppFrame/Topbar.test.js +31 -39
- package/src/components/ColumnWrapper.js +18 -9
- package/src/components/Culture.js +20 -10
- package/src/components/Culture.test.js +27 -16
- package/src/components/DropMenu/DropMenu.test.js +185 -224
- package/src/components/DropMenu/Menu.js +73 -80
- package/src/components/DropMenu/Menu.test.js +35 -86
- package/src/components/DropMenu/index.js +19 -15
- package/src/components/Form/Combination.js +35 -28
- package/src/components/Form/Combination.test.js +6 -19
- package/src/components/Form/Field.js +53 -66
- package/src/components/Form/Field.test.js +29 -51
- package/src/components/Form/FieldElements.js +0 -14
- package/src/components/Form/FieldElements.test.js +104 -111
- package/src/components/Form/Fieldset.js +42 -37
- package/src/components/Form/Fieldset.test.js +14 -7
- package/src/components/Form/Form.js +11 -7
- package/src/components/Form/Form.test.js +75 -56
- package/src/components/Form/FormElement.js +24 -16
- package/src/components/Form/InputField.test.js +24 -30
- package/src/components/Form/Inputs/Button.js +58 -14
- package/src/components/Form/Inputs/Button.test.js +32 -7
- package/src/components/Form/Inputs/Inputs.test.js +0 -7
- package/src/components/Form/Inputs/ReadOnly.js +34 -28
- package/src/components/Form/Inputs/ReadOnly.test.js +45 -7
- package/src/components/Form/Inputs/Selector.js +22 -0
- package/src/components/Form/Inputs/Selector.test.js +105 -0
- package/src/components/Form/Inputs/Text.js +15 -44
- package/src/components/Form/Inputs/Text.test.js +20 -29
- package/src/components/Form/Inputs/Toggles.js +27 -26
- package/src/components/Form/Inputs/Toggles.test.js +22 -28
- package/src/components/Form/Inputs/index.js +4 -15
- package/src/components/MaterialUI/DataDisplay/PredefinedElements/InformationItem.test.js +1 -4
- package/src/components/MaterialUI/DataDisplay/PredefinedElements/Placeholder.js +32 -6
- package/src/components/MaterialUI/DataDisplay/PredefinedElements/Placeholder.test.js +3 -1
- package/src/components/MaterialUI/DataDisplay/PredefinedElements/SectionToolbar.js +39 -0
- package/src/components/MaterialUI/DataDisplay/Table.js +190 -114
- package/src/components/MaterialUI/DataDisplay/Table.test.js +246 -1
- package/src/components/MaterialUI/DataDisplay/TableProps.js +4 -0
- package/src/components/MaterialUI/DataDisplay/TableProps.test.js +2 -0
- package/src/components/MaterialUI/DataDisplay/TableWithInMemoryPaging.js +145 -0
- package/src/components/MaterialUI/DataDisplay/TableWithInMemoryPaging.test.js +457 -0
- package/src/components/MaterialUI/DataDisplay/TooltippedElements/MultipleLinesText.js +5 -1
- package/src/components/MaterialUI/DataDisplay/TooltippedElements/MultipleLinesText.test.js +7 -1
- package/src/components/MaterialUI/Inputs/DatePicker.js +19 -20
- package/src/components/MaterialUI/Inputs/DatePicker.test.js +11 -6
- package/src/components/MaterialUI/Inputs/PredefinedElements/SearchControl.js +1 -0
- package/src/components/MaterialUI/Inputs/Select.js +2 -0
- package/src/components/MaterialUI/Inputs/SelectProps.js +2 -0
- package/src/components/MaterialUI/Inputs/SelectProps.test.js +2 -0
- package/src/components/MaterialUI/Inputs/Switch.js +22 -1
- package/src/components/MaterialUI/Inputs/Switch.test.js +23 -0
- package/src/components/MaterialUI/Inputs/SwitchProps.js +2 -0
- package/src/components/MaterialUI/Inputs/SwitchProps.test.js +2 -0
- package/src/components/MaterialUI/Inputs/TimePicker.js +10 -19
- package/src/components/MaterialUI/Inputs/TimePicker.test.js +278 -117
- package/src/components/MaterialUI/hocs/withDeferredTooltip.js +4 -1
- package/src/components/MaterialUI/hocs/withDeferredTooltip.test.js +27 -0
- package/src/components/MaterialUI/muiThemes.js +1 -0
- package/src/components/Navigation/Bar.test.js +92 -87
- package/src/components/Provision.js +1 -1
- package/src/components/TaskDetailsModal.test.js +1 -3
- package/src/constants.js +1 -0
- package/src/content/iconsSheet.svg +740 -116
- package/src/hocs/withScrollBox.js +32 -19
- package/src/hocs/withScrollBox.test.js +15 -3
- package/src/hooks/useDaysAndMonthsLocalization.js +79 -0
- package/src/hooks/useDaysAndMonthsLocalization.test.js +107 -0
- package/src/hooks/useInMemoryPaging.js +78 -0
- package/src/hooks/useInMemoryPaging.test.js +515 -0
- package/src/hooks/useMultipleFieldEditState.js +11 -4
- package/src/hooks/useMultipleFieldEditState.test.js +49 -1
- package/src/reducers/metadata.js +6 -1
- package/src/reducers/metadata.test.js +31 -0
- package/src/requests +1 -0
- package/src/schemas/metadata.js +3 -0
- package/src/selectors/locale.js +1 -1
- package/src/selectors/metadata.js +12 -9
- package/src/selectors/metadata.test.js +92 -11
- package/src/sharedMessages.js +184 -0
- package/src/timezones.json +883 -0
- package/src/translations/en-US.json +46 -0
- package/src/translations/fr-CA.json +46 -0
- package/src/utils/ListHelper.js +203 -0
- package/src/utils/ListHelper.test.js +710 -0
- package/src/utils/comparisonHelper.js +135 -0
- package/src/utils/comparisonHelper.test.js +334 -0
- package/src/utils/propertyBagHelper.js +2 -0
- package/src/utils/propertyBagHelper.test.js +6 -0
- package/src/utils/timezoneHelper.js +10 -135
- package/src/utils/timezoneHelper.test.js +7 -7
- package/dist/components/Form/FieldList.js +0 -270
- package/dist/components/Form/Inputs/FieldButtons.js +0 -66
- package/dist/components/Form/Inputs/Number.js +0 -117
- package/dist/components/Form/Inputs/SmallButton.js +0 -91
- package/dist/components/Form/Inputs/Time.js +0 -86
- package/dist/components/Form/Inputs/Translation.js +0 -169
- package/src/components/AppFrame/ApplicationSelector/Header.js +0 -34
- package/src/components/AppFrame/ApplicationSelector/Header.test.js +0 -23
- package/src/components/Form/FieldList.js +0 -210
- package/src/components/Form/FieldList.test.js +0 -558
- package/src/components/Form/Inputs/FieldButtons.js +0 -90
- package/src/components/Form/Inputs/Number.js +0 -60
- package/src/components/Form/Inputs/Number.test.js +0 -435
- package/src/components/Form/Inputs/SmallButton.js +0 -37
- package/src/components/Form/Inputs/SmallButton.test.js +0 -65
- package/src/components/Form/Inputs/Time.js +0 -32
- package/src/components/Form/Inputs/Time.test.js +0 -41
- package/src/components/Form/Inputs/Translation.js +0 -93
- package/src/components/Form/Inputs/Translation.test.js +0 -204
package/src/requests
CHANGED
package/src/schemas/metadata.js
CHANGED
|
@@ -3,3 +3,6 @@ import { schema } from "normalizr";
|
|
|
3
3
|
export const profileAttributeGroupsSchema = new schema.Entity("metadata", {}, { idAttribute: "name" });
|
|
4
4
|
export const profileAttributeGroupsListSchema = [profileAttributeGroupsSchema];
|
|
5
5
|
export default profileAttributeGroupsListSchema;
|
|
6
|
+
|
|
7
|
+
export const orderAttributeGroupsSchema = new schema.Entity("metadata", {}, { idAttribute: "name" });
|
|
8
|
+
export const orderAttributeGroupsListSchema = [orderAttributeGroupsSchema];
|
package/src/selectors/locale.js
CHANGED
|
@@ -28,7 +28,7 @@ export const defaultCulture = createSelector(localeData, locale => locale.get("d
|
|
|
28
28
|
export const orderedCultureList = createSelector(cultureList, defaultCulture, (cultures, defaultCulture) =>
|
|
29
29
|
cultures.sort((a, b) => {
|
|
30
30
|
/*istanbul ignore if */ if (a === defaultCulture) return -1;
|
|
31
|
-
if (b === defaultCulture) return 1;
|
|
31
|
+
/*istanbul ignore if */ if (b === defaultCulture) return 1;
|
|
32
32
|
return 0;
|
|
33
33
|
}),
|
|
34
34
|
);
|
|
@@ -210,26 +210,29 @@ export const baseAttributesSelector = memoize((moduleName, entityName) =>
|
|
|
210
210
|
createSelector(mappedDefinitionAttributesSelector(moduleName, entityName), filterIsBuiltInAttributes(true)),
|
|
211
211
|
);
|
|
212
212
|
|
|
213
|
-
export const
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
213
|
+
export const moduleAttributeGroupsSelector = memoize(moduleName =>
|
|
214
|
+
createSelector(metadata, currentLocaleOrDefault, (meta, locale) => {
|
|
215
|
+
const metaDataGroupName = moduleName === "order" ? "orderAttributeGroups" : "profileAttributeGroups";
|
|
216
|
+
const groups = meta.get(metaDataGroupName);
|
|
217
|
+
return !groups?.size ? null : groups?.map(x => setTranslationWithFallbackField(locale, x, "name", "displayName"));
|
|
218
|
+
}),
|
|
219
|
+
);
|
|
217
220
|
|
|
218
221
|
export const groupedCustomAttributesDefinitionSelector = memoize((moduleName, entityName) =>
|
|
219
222
|
createSelector(
|
|
220
|
-
|
|
223
|
+
moduleAttributeGroupsSelector(moduleName),
|
|
221
224
|
customAttributesSelector(moduleName, entityName),
|
|
222
225
|
currentLocaleOrDefault,
|
|
223
|
-
(
|
|
226
|
+
(allAttributeGroups, attributes) =>
|
|
224
227
|
attributes
|
|
225
228
|
.groupBy(item => item.get("groupId"))
|
|
226
229
|
.map(group => {
|
|
227
230
|
const groupId = group.first().get("groupId");
|
|
228
|
-
const
|
|
231
|
+
const attributeGroup = allAttributeGroups?.get(groupId);
|
|
229
232
|
return Immutable.fromJS({
|
|
230
233
|
id: groupId,
|
|
231
|
-
name:
|
|
232
|
-
displayOrder:
|
|
234
|
+
name: attributeGroup?.get("displayName"),
|
|
235
|
+
displayOrder: attributeGroup?.get("displayOrder"),
|
|
233
236
|
})
|
|
234
237
|
.set(
|
|
235
238
|
"baseAttributes",
|
|
@@ -18,7 +18,6 @@ import {
|
|
|
18
18
|
productPropertyValueSelector,
|
|
19
19
|
productPropertyValuesSelector,
|
|
20
20
|
variantPropertyKeyValuesSelector,
|
|
21
|
-
profileAttributeGroupsSelector,
|
|
22
21
|
selectCurrentLookupDetails,
|
|
23
22
|
mappedDefinitionsListSelector,
|
|
24
23
|
baseAttributesSelector,
|
|
@@ -1367,6 +1366,29 @@ describe("definitions", () => {
|
|
|
1367
1366
|
allowPriceLists: true,
|
|
1368
1367
|
},
|
|
1369
1368
|
},
|
|
1369
|
+
order: {
|
|
1370
|
+
ORDER: {
|
|
1371
|
+
displayName: {
|
|
1372
|
+
"en-CA": "Order",
|
|
1373
|
+
"en-US": "Order",
|
|
1374
|
+
"fr-CA": "ORDER",
|
|
1375
|
+
},
|
|
1376
|
+
entityTypeName: "CUSTOMER",
|
|
1377
|
+
isBuiltIn: true,
|
|
1378
|
+
attributes: [
|
|
1379
|
+
baseBuitInAttribute1,
|
|
1380
|
+
baseBuitInAttribute2,
|
|
1381
|
+
customProfileAttribute1,
|
|
1382
|
+
customProfileAttribute2,
|
|
1383
|
+
baseBuitInAttribute4,
|
|
1384
|
+
baseBuitInAttribute3,
|
|
1385
|
+
baseCustomAttribute1,
|
|
1386
|
+
baseCustomAttribute3,
|
|
1387
|
+
baseCustomAttribute2,
|
|
1388
|
+
],
|
|
1389
|
+
isSharedEntity: true,
|
|
1390
|
+
},
|
|
1391
|
+
},
|
|
1370
1392
|
},
|
|
1371
1393
|
profileAttributeGroups: {
|
|
1372
1394
|
Default: {
|
|
@@ -1388,20 +1410,21 @@ describe("definitions", () => {
|
|
|
1388
1410
|
},
|
|
1389
1411
|
},
|
|
1390
1412
|
},
|
|
1413
|
+
orderAttributeGroups: {
|
|
1414
|
+
Default: {
|
|
1415
|
+
displayOrder: 1,
|
|
1416
|
+
name: "Default",
|
|
1417
|
+
displayName: {
|
|
1418
|
+
"en-US": "Default en-US",
|
|
1419
|
+
"en-CA": "Default en-CA",
|
|
1420
|
+
"fr-CA": "Default fr-CA",
|
|
1421
|
+
},
|
|
1422
|
+
},
|
|
1423
|
+
},
|
|
1391
1424
|
},
|
|
1392
1425
|
});
|
|
1393
1426
|
});
|
|
1394
1427
|
|
|
1395
|
-
it("will get null if profileAttributeGroups are not found in metadata", () => {
|
|
1396
|
-
const newState = Immutable.fromJS({
|
|
1397
|
-
locale: {},
|
|
1398
|
-
metadata: {
|
|
1399
|
-
profileAttributeGroups: {},
|
|
1400
|
-
},
|
|
1401
|
-
});
|
|
1402
|
-
expect(profileAttributeGroupsSelector, "when called with", [newState], "to satisfy", null);
|
|
1403
|
-
});
|
|
1404
|
-
|
|
1405
1428
|
it("will return correct customer profile definition", () => {
|
|
1406
1429
|
const expected = Immutable.fromJS({
|
|
1407
1430
|
CustomProfile1: {
|
|
@@ -1591,6 +1614,64 @@ describe("definitions", () => {
|
|
|
1591
1614
|
);
|
|
1592
1615
|
});
|
|
1593
1616
|
|
|
1617
|
+
it("will return correct custom order attributes definition in correct order", () => {
|
|
1618
|
+
const expectedGroup1 = customProfileAttribute1.groupId;
|
|
1619
|
+
const expectedItem1 = {
|
|
1620
|
+
...customProfileAttribute1,
|
|
1621
|
+
...{ displayName: customProfileAttribute1.displayName["en-US"] },
|
|
1622
|
+
};
|
|
1623
|
+
|
|
1624
|
+
const expectedBaseCustomWithOrder1 = {
|
|
1625
|
+
...baseCustomAttribute1,
|
|
1626
|
+
...{ displayName: baseCustomAttribute1.displayName["en-US"] },
|
|
1627
|
+
};
|
|
1628
|
+
|
|
1629
|
+
const expectedBaseCustomWithOrder2 = {
|
|
1630
|
+
...baseCustomAttribute2,
|
|
1631
|
+
...{ displayName: baseCustomAttribute2.displayName["en-US"] },
|
|
1632
|
+
};
|
|
1633
|
+
|
|
1634
|
+
const expectedBaseCustomWithOrder3 = {
|
|
1635
|
+
...baseCustomAttribute3,
|
|
1636
|
+
...{ displayName: baseCustomAttribute3.displayName["en-US"] },
|
|
1637
|
+
};
|
|
1638
|
+
|
|
1639
|
+
const expected = Immutable.fromJS({
|
|
1640
|
+
[expectedGroup1]: {
|
|
1641
|
+
id: expectedGroup1,
|
|
1642
|
+
name: "Default en-US",
|
|
1643
|
+
baseAttributes: [expectedBaseCustomWithOrder1, expectedBaseCustomWithOrder2, expectedBaseCustomWithOrder3],
|
|
1644
|
+
profileAttributes: [expectedItem1],
|
|
1645
|
+
},
|
|
1646
|
+
});
|
|
1647
|
+
|
|
1648
|
+
expect(
|
|
1649
|
+
groupedCustomAttributesDefinitionSelector,
|
|
1650
|
+
"when called with",
|
|
1651
|
+
["order", "ORDER"],
|
|
1652
|
+
"when called with",
|
|
1653
|
+
[state],
|
|
1654
|
+
"to satisfy",
|
|
1655
|
+
expected,
|
|
1656
|
+
);
|
|
1657
|
+
});
|
|
1658
|
+
|
|
1659
|
+
it("will return correct custom attributes definition in correct order for unknown module", () => {
|
|
1660
|
+
const expected = Immutable.fromJS({});
|
|
1661
|
+
|
|
1662
|
+
const newState = state.removeIn(["metadata", "profileAttributeGroups"]);
|
|
1663
|
+
|
|
1664
|
+
expect(
|
|
1665
|
+
groupedCustomAttributesDefinitionSelector,
|
|
1666
|
+
"when called with",
|
|
1667
|
+
["invalid", "invalid"],
|
|
1668
|
+
"when called with",
|
|
1669
|
+
[newState],
|
|
1670
|
+
"to satisfy",
|
|
1671
|
+
expected,
|
|
1672
|
+
);
|
|
1673
|
+
});
|
|
1674
|
+
|
|
1594
1675
|
it("will return correct full base (built in) customer definition attributes", () => {
|
|
1595
1676
|
const expected = Immutable.fromJS([
|
|
1596
1677
|
baseBuitInAttribute1,
|
package/src/sharedMessages.js
CHANGED
|
@@ -299,6 +299,190 @@ const sharedMessages = defineMessages({
|
|
|
299
299
|
id: "orc-shared.lastModifiedBy",
|
|
300
300
|
defaultMessage: "Last Modified By",
|
|
301
301
|
},
|
|
302
|
+
search: {
|
|
303
|
+
id: "orc-shared.search",
|
|
304
|
+
defaultMessage: "Search",
|
|
305
|
+
},
|
|
306
|
+
sundayMin: {
|
|
307
|
+
id: "orc-shared.sundayMin",
|
|
308
|
+
defaultMessage: "Su",
|
|
309
|
+
},
|
|
310
|
+
mondayMin: {
|
|
311
|
+
id: "orc-shared.mondayMin",
|
|
312
|
+
defaultMessage: "Mo",
|
|
313
|
+
},
|
|
314
|
+
tuesdayMin: {
|
|
315
|
+
id: "orc-shared.tuesdayMin",
|
|
316
|
+
defaultMessage: "Tu",
|
|
317
|
+
},
|
|
318
|
+
wednesdayMin: {
|
|
319
|
+
id: "orc-shared.wednesdayMin",
|
|
320
|
+
defaultMessage: "We",
|
|
321
|
+
},
|
|
322
|
+
thursdayMin: {
|
|
323
|
+
id: "orc-shared.thursdayMin",
|
|
324
|
+
defaultMessage: "Th",
|
|
325
|
+
},
|
|
326
|
+
fridayMin: {
|
|
327
|
+
id: "orc-shared.fridayMin",
|
|
328
|
+
defaultMessage: "Fr",
|
|
329
|
+
},
|
|
330
|
+
saturdayMin: {
|
|
331
|
+
id: "orc-shared.saturdayMin",
|
|
332
|
+
defaultMessage: "Sa",
|
|
333
|
+
},
|
|
334
|
+
sundayShort: {
|
|
335
|
+
id: "orc-shared.sundayShort",
|
|
336
|
+
defaultMessage: "Sun",
|
|
337
|
+
},
|
|
338
|
+
mondayShort: {
|
|
339
|
+
id: "orc-shared.mondayShort",
|
|
340
|
+
defaultMessage: "Mon",
|
|
341
|
+
},
|
|
342
|
+
tuesdayShort: {
|
|
343
|
+
id: "orc-shared.tuesdayShort",
|
|
344
|
+
defaultMessage: "Tue",
|
|
345
|
+
},
|
|
346
|
+
wednesdayShort: {
|
|
347
|
+
id: "orc-shared.wednesdayShort",
|
|
348
|
+
defaultMessage: "Wed",
|
|
349
|
+
},
|
|
350
|
+
thursdayShort: {
|
|
351
|
+
id: "orc-shared.thursdayShort",
|
|
352
|
+
defaultMessage: "Thu",
|
|
353
|
+
},
|
|
354
|
+
fridayShort: {
|
|
355
|
+
id: "orc-shared.fridayShort",
|
|
356
|
+
defaultMessage: "Fri",
|
|
357
|
+
},
|
|
358
|
+
saturdayShort: {
|
|
359
|
+
id: "orc-shared.saturdayShort",
|
|
360
|
+
defaultMessage: "Sat",
|
|
361
|
+
},
|
|
362
|
+
sunday: {
|
|
363
|
+
id: "orc-shared.sunday",
|
|
364
|
+
defaultMessage: "Sunday",
|
|
365
|
+
},
|
|
366
|
+
monday: {
|
|
367
|
+
id: "orc-shared.monday",
|
|
368
|
+
defaultMessage: "Monday",
|
|
369
|
+
},
|
|
370
|
+
tuesday: {
|
|
371
|
+
id: "orc-shared.tuesday",
|
|
372
|
+
defaultMessage: "Tuesday",
|
|
373
|
+
},
|
|
374
|
+
wednesday: {
|
|
375
|
+
id: "orc-shared.wednesday",
|
|
376
|
+
defaultMessage: "Wednesday",
|
|
377
|
+
},
|
|
378
|
+
thursday: {
|
|
379
|
+
id: "orc-shared.thursday",
|
|
380
|
+
defaultMessage: "Thursday",
|
|
381
|
+
},
|
|
382
|
+
friday: {
|
|
383
|
+
id: "orc-shared.friday",
|
|
384
|
+
defaultMessage: "Friday",
|
|
385
|
+
},
|
|
386
|
+
saturday: {
|
|
387
|
+
id: "orc-shared.saturday",
|
|
388
|
+
defaultMessage: "Saturday",
|
|
389
|
+
},
|
|
390
|
+
januaryShort: {
|
|
391
|
+
id: "orc-shared.januaryShort",
|
|
392
|
+
defaultMessage: "Jan",
|
|
393
|
+
},
|
|
394
|
+
februaryShort: {
|
|
395
|
+
id: "orc-shared.februaryShort",
|
|
396
|
+
defaultMessage: "Feb",
|
|
397
|
+
},
|
|
398
|
+
marchShort: {
|
|
399
|
+
id: "orc-shared.marchShort",
|
|
400
|
+
defaultMessage: "Mar",
|
|
401
|
+
},
|
|
402
|
+
aprilShort: {
|
|
403
|
+
id: "orc-shared.aprilShort",
|
|
404
|
+
defaultMessage: "Apr",
|
|
405
|
+
},
|
|
406
|
+
mayShort: {
|
|
407
|
+
id: "orc-shared.mayShort",
|
|
408
|
+
defaultMessage: "May",
|
|
409
|
+
},
|
|
410
|
+
juneShort: {
|
|
411
|
+
id: "orc-shared.juneShort",
|
|
412
|
+
defaultMessage: "Jun",
|
|
413
|
+
},
|
|
414
|
+
julyShort: {
|
|
415
|
+
id: "orc-shared.julyShort",
|
|
416
|
+
defaultMessage: "Jul",
|
|
417
|
+
},
|
|
418
|
+
augustShort: {
|
|
419
|
+
id: "orc-shared.augustShort",
|
|
420
|
+
defaultMessage: "Aug",
|
|
421
|
+
},
|
|
422
|
+
septemberShort: {
|
|
423
|
+
id: "orc-shared.septemberShort",
|
|
424
|
+
defaultMessage: "Sep",
|
|
425
|
+
},
|
|
426
|
+
octoberShort: {
|
|
427
|
+
id: "orc-shared.octoberShort",
|
|
428
|
+
defaultMessage: "Oct",
|
|
429
|
+
},
|
|
430
|
+
novemberShort: {
|
|
431
|
+
id: "orc-shared.novemberShort",
|
|
432
|
+
defaultMessage: "Nov",
|
|
433
|
+
},
|
|
434
|
+
decemberShort: {
|
|
435
|
+
id: "orc-shared.decemberShort",
|
|
436
|
+
defaultMessage: "Dec",
|
|
437
|
+
},
|
|
438
|
+
january: {
|
|
439
|
+
id: "orc-shared.january",
|
|
440
|
+
defaultMessage: "January",
|
|
441
|
+
},
|
|
442
|
+
february: {
|
|
443
|
+
id: "orc-shared.february",
|
|
444
|
+
defaultMessage: "February",
|
|
445
|
+
},
|
|
446
|
+
march: {
|
|
447
|
+
id: "orc-shared.march",
|
|
448
|
+
defaultMessage: "March",
|
|
449
|
+
},
|
|
450
|
+
april: {
|
|
451
|
+
id: "orc-shared.april",
|
|
452
|
+
defaultMessage: "April",
|
|
453
|
+
},
|
|
454
|
+
may: {
|
|
455
|
+
id: "orc-shared.may",
|
|
456
|
+
defaultMessage: "May",
|
|
457
|
+
},
|
|
458
|
+
june: {
|
|
459
|
+
id: "orc-shared.june",
|
|
460
|
+
defaultMessage: "June",
|
|
461
|
+
},
|
|
462
|
+
july: {
|
|
463
|
+
id: "orc-shared.july",
|
|
464
|
+
defaultMessage: "July",
|
|
465
|
+
},
|
|
466
|
+
august: {
|
|
467
|
+
id: "orc-shared.august",
|
|
468
|
+
defaultMessage: "August",
|
|
469
|
+
},
|
|
470
|
+
september: {
|
|
471
|
+
id: "orc-shared.september",
|
|
472
|
+
defaultMessage: "September",
|
|
473
|
+
},
|
|
474
|
+
october: {
|
|
475
|
+
id: "orc-shared.october",
|
|
476
|
+
defaultMessage: "October",
|
|
477
|
+
},
|
|
478
|
+
november: {
|
|
479
|
+
id: "orc-shared.november",
|
|
480
|
+
defaultMessage: "November",
|
|
481
|
+
},
|
|
482
|
+
december: {
|
|
483
|
+
id: "orc-shared.december",
|
|
484
|
+
defaultMessage: "December",
|
|
485
|
+
},
|
|
302
486
|
});
|
|
303
487
|
|
|
304
488
|
export default sharedMessages;
|