@progressive-development/pd-calendar 0.2.11 → 0.2.12

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.
@@ -0,0 +1,18 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/lit/lit/main/packages/localize-tools/config.schema.json",
3
+ "sourceLocale": "dev",
4
+ "targetLocales": ["de", "en", "be"],
5
+ "inputFiles": [
6
+ "src/**/*.js"
7
+ ],
8
+ "output": {
9
+ "mode": "runtime",
10
+ "localeCodesModule": "src/generated/locale-codes.js",
11
+ "outputDir": "src/generated/locale"
12
+
13
+ },
14
+ "interchange": {
15
+ "format": "xliff",
16
+ "xliffDir": "./xliff/"
17
+ }
18
+ }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "progressive development calendar web component",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "author": "PD Progressive Development",
6
- "version": "0.2.11",
6
+ "version": "0.2.12",
7
7
  "main": "index.js",
8
8
  "module": "index.js",
9
9
  "scripts": {
@@ -14,7 +14,9 @@
14
14
  "test": "web-test-runner --coverage",
15
15
  "test:watch": "web-test-runner --watch",
16
16
  "storybook": "storybook dev -p 6006",
17
- "build-storybook": "storybook build"
17
+ "build-storybook": "storybook build",
18
+ "localizeExtract": "lit-localize extract",
19
+ "localizeBuild": "lit-localize build"
18
20
  },
19
21
  "keywords": [
20
22
  "pd",
@@ -30,6 +32,7 @@
30
32
  "week"
31
33
  ],
32
34
  "dependencies": {
35
+ "@lit/localize": "^0.12.1",
33
36
  "@progressive-development/pd-icon": "^0.1.20",
34
37
  "@progressive-development/pd-shared-styles": "0.1.1",
35
38
  "fecha": "^4.2.3",
@@ -37,6 +40,7 @@
37
40
  },
38
41
  "devDependencies": {
39
42
  "@custom-elements-manifest/analyzer": "^0.4.17",
43
+ "@lit/localize-tools": "^0.7.2",
40
44
  "@open-wc/eslint-config": "^4.3.0",
41
45
  "@open-wc/testing": "^3.0.0-next.5",
42
46
  "@storybook/addon-essentials": "^7.6.4",
package/src/PdCalendar.js CHANGED
@@ -4,6 +4,8 @@
4
4
  */
5
5
 
6
6
  import { LitElement, html, css } from 'lit';
7
+ import { msg, updateWhenLocaleChanges } from '@lit/localize';
8
+
7
9
  import { format } from 'fecha';
8
10
  import '@progressive-development/pd-icon/pd-icon.js';
9
11
 
@@ -11,9 +13,43 @@ import { PDColorStyles, PDFontStyles } from '@progressive-development/pd-shared-
11
13
 
12
14
  import './PdCalendarCell.js';
13
15
 
14
- // todo: use existing shortnames for locale here
15
- const weekDays = ['Ma', 'Di', 'Wo', 'Do', 'Vr', 'Za', 'Zo'];
16
- const weekDaysWithoutWE = ['Ma', 'Di', 'Wo', 'Do', 'Vr'];
16
+ const loadLocales = () =>
17
+ ({
18
+ monthNames: [
19
+ msg("Januar", { id: 'pd.datepicker.month.jan'}),
20
+ msg("Februar", { id: 'pd.datepicker.month.feb'}),
21
+ msg("März", { id: 'pd.datepicker.month.mar'}),
22
+ msg("April", { id: 'pd.datepicker.month.apr'}),
23
+ msg("Mai", { id: 'pd.datepicker.month.may'}),
24
+ msg("Juni", { id: 'pd.datepicker.month.jun'}),
25
+ msg("Juli", { id: 'pd.datepicker.month.jul'}),
26
+ msg("August", { id: 'pd.datepicker.month.aug'}),
27
+ msg("September", { id: 'pd.datepicker.month.sep'}),
28
+ msg("Oktober", { id: 'pd.datepicker.month.oct'}),
29
+ msg("November", { id: 'pd.datepicker.month.nov'}),
30
+ msg("Dezember", { id: 'pd.datepicker.month.dec'}),
31
+ ],
32
+ weekdays: [
33
+ msg("Sonntag", { id: 'pd.datepicker.day.sun'}),
34
+ msg("Montag", { id: 'pd.datepicker.day.mon'}),
35
+ msg("Dienstag", { id: 'pd.datepicker.day.tue'}),
36
+ msg("Mittwoch", { id: 'pd.datepicker.day.wed'}),
37
+ msg("Donnerstag", { id: 'pd.datepicker.day.thi'}),
38
+ msg("Freitag", { id: 'pd.datepicker.day.fri'}),
39
+ msg("Samstag", { id: 'pd.datepicker.day.sat'}),
40
+ ],
41
+ weekdaysShort: [
42
+ msg("Mo", { id: 'pd.datepicker.shortday.mon'}),
43
+ msg("Di", { id: 'pd.datepicker.shortday.tue'}),
44
+ msg("Mi", { id: 'pd.datepicker.shortday.wed'}),
45
+ msg("Do", { id: 'pd.datepicker.shortday.thi'}),
46
+ msg("Fr", { id: 'pd.datepicker.shortday.fri'}),
47
+ msg("Sa", { id: 'pd.datepicker.shortday.sat'}),
48
+ msg("So", { id: 'pd.datepicker.shortday.sun'}),
49
+ ],
50
+ });
51
+
52
+ const LOCALES = loadLocales();
17
53
 
18
54
  // list views (list, month, week)
19
55
  const VIEW_LIST = 1;
@@ -206,6 +242,7 @@ export class PdCalendar extends LitElement {
206
242
 
207
243
  constructor() {
208
244
  super();
245
+ updateWhenLocaleChanges(this);
209
246
 
210
247
  this.data = {};
211
248
  this._viewType = VIEW_MONTH;
@@ -339,7 +376,7 @@ export class PdCalendar extends LitElement {
339
376
  </div>
340
377
 
341
378
  <div class="content grid-container ${sizeVar}">
342
- ${(this.hideWeekend ? weekDaysWithoutWE : weekDays).map(
379
+ ${this._getWeekDays().map(
343
380
  shortName => html` <div class="title-week-day">${shortName}</div>`
344
381
  )}
345
382
  ${this._daysFromPreviousMonth.map(
@@ -351,6 +388,13 @@ export class PdCalendar extends LitElement {
351
388
  `;
352
389
  }
353
390
 
391
+ // eslint-disable-next-line class-methods-use-this
392
+ _getWeekDays() {
393
+ return this.hideWeekend ? [
394
+ ...LOCALES.weekdaysShort
395
+ ].splice(0, 5) : LOCALES.weekdaysShort;
396
+ }
397
+
354
398
  _nextMonth() {
355
399
  if (this._checkNextMonthConstraint()) {
356
400
  const newDate = new Date(
@@ -0,0 +1,39 @@
1
+
2
+ // Do not modify this file by hand!
3
+ // Re-generate this file by running lit-localize
4
+
5
+
6
+
7
+
8
+ /* eslint-disable no-irregular-whitespace */
9
+ /* eslint-disable @typescript-eslint/no-explicit-any */
10
+
11
+ export const templates = {
12
+ 'pd.datepicker.month.jan': `Januar`,
13
+ 'pd.datepicker.month.feb': `Februar`,
14
+ 'pd.datepicker.month.mar': `März`,
15
+ 'pd.datepicker.month.apr': `April`,
16
+ 'pd.datepicker.month.may': `Mai`,
17
+ 'pd.datepicker.month.jun': `Juni`,
18
+ 'pd.datepicker.month.jul': `Juli`,
19
+ 'pd.datepicker.month.aug': `August`,
20
+ 'pd.datepicker.month.sep': `September`,
21
+ 'pd.datepicker.month.oct': `Oktober`,
22
+ 'pd.datepicker.month.nov': `November`,
23
+ 'pd.datepicker.month.dec': `Dezember`,
24
+ 'pd.datepicker.day.sun': `Sonntag`,
25
+ 'pd.datepicker.day.mon': `Montag`,
26
+ 'pd.datepicker.day.tue': `Dienstag`,
27
+ 'pd.datepicker.day.wed': `Mittwoch`,
28
+ 'pd.datepicker.day.thi': `Donnerstag`,
29
+ 'pd.datepicker.day.fri': `Freitag`,
30
+ 'pd.datepicker.day.sat': `Samstag`,
31
+ 'pd.datepicker.shortday.mon': `Mo`,
32
+ 'pd.datepicker.shortday.tue': `Di`,
33
+ 'pd.datepicker.shortday.wed': `Mi`,
34
+ 'pd.datepicker.shortday.thi': `Do`,
35
+ 'pd.datepicker.shortday.fri': `Fr`,
36
+ 'pd.datepicker.shortday.sat': `Sa`,
37
+ 'pd.datepicker.shortday.sun': `So`,
38
+ };
39
+
@@ -0,0 +1,39 @@
1
+
2
+ // Do not modify this file by hand!
3
+ // Re-generate this file by running lit-localize
4
+
5
+
6
+
7
+
8
+ /* eslint-disable no-irregular-whitespace */
9
+ /* eslint-disable @typescript-eslint/no-explicit-any */
10
+
11
+ export const templates = {
12
+ 'pd.datepicker.month.jan': `Januar`,
13
+ 'pd.datepicker.month.feb': `Februar`,
14
+ 'pd.datepicker.month.mar': `März`,
15
+ 'pd.datepicker.month.apr': `April`,
16
+ 'pd.datepicker.month.may': `Mai`,
17
+ 'pd.datepicker.month.jun': `Juni`,
18
+ 'pd.datepicker.month.jul': `Juli`,
19
+ 'pd.datepicker.month.aug': `August`,
20
+ 'pd.datepicker.month.sep': `September`,
21
+ 'pd.datepicker.month.oct': `Oktober`,
22
+ 'pd.datepicker.month.nov': `November`,
23
+ 'pd.datepicker.month.dec': `Dezember`,
24
+ 'pd.datepicker.day.sun': `Sonntag`,
25
+ 'pd.datepicker.day.mon': `Montag`,
26
+ 'pd.datepicker.day.tue': `Dienstag`,
27
+ 'pd.datepicker.day.wed': `Mittwoch`,
28
+ 'pd.datepicker.day.thi': `Donnerstag`,
29
+ 'pd.datepicker.day.fri': `Freitag`,
30
+ 'pd.datepicker.day.sat': `Samstag`,
31
+ 'pd.datepicker.shortday.mon': `Mo`,
32
+ 'pd.datepicker.shortday.tue': `Di`,
33
+ 'pd.datepicker.shortday.wed': `Mi`,
34
+ 'pd.datepicker.shortday.thi': `Do`,
35
+ 'pd.datepicker.shortday.fri': `Fr`,
36
+ 'pd.datepicker.shortday.sat': `Sa`,
37
+ 'pd.datepicker.shortday.sun': `So`,
38
+ };
39
+
@@ -0,0 +1,39 @@
1
+
2
+ // Do not modify this file by hand!
3
+ // Re-generate this file by running lit-localize
4
+
5
+
6
+
7
+
8
+ /* eslint-disable no-irregular-whitespace */
9
+ /* eslint-disable @typescript-eslint/no-explicit-any */
10
+
11
+ export const templates = {
12
+ 'pd.datepicker.month.jan': `Januar`,
13
+ 'pd.datepicker.month.feb': `Februar`,
14
+ 'pd.datepicker.month.mar': `März`,
15
+ 'pd.datepicker.month.apr': `April`,
16
+ 'pd.datepicker.month.may': `Mai`,
17
+ 'pd.datepicker.month.jun': `Juni`,
18
+ 'pd.datepicker.month.jul': `Juli`,
19
+ 'pd.datepicker.month.aug': `August`,
20
+ 'pd.datepicker.month.sep': `September`,
21
+ 'pd.datepicker.month.oct': `Oktober`,
22
+ 'pd.datepicker.month.nov': `November`,
23
+ 'pd.datepicker.month.dec': `Dezember`,
24
+ 'pd.datepicker.day.sun': `Sonntag`,
25
+ 'pd.datepicker.day.mon': `Montag`,
26
+ 'pd.datepicker.day.tue': `Dienstag`,
27
+ 'pd.datepicker.day.wed': `Mittwoch`,
28
+ 'pd.datepicker.day.thi': `Donnerstag`,
29
+ 'pd.datepicker.day.fri': `Freitag`,
30
+ 'pd.datepicker.day.sat': `Samstag`,
31
+ 'pd.datepicker.shortday.mon': `Mo`,
32
+ 'pd.datepicker.shortday.tue': `Di`,
33
+ 'pd.datepicker.shortday.wed': `Mi`,
34
+ 'pd.datepicker.shortday.thi': `Do`,
35
+ 'pd.datepicker.shortday.fri': `Fr`,
36
+ 'pd.datepicker.shortday.sat': `Sa`,
37
+ 'pd.datepicker.shortday.sun': `So`,
38
+ };
39
+
@@ -0,0 +1,27 @@
1
+ // Do not modify this file by hand!
2
+ // Re-generate this file by running lit-localize.
3
+
4
+ /**
5
+ * The locale code that templates in this source code are written in.
6
+ */
7
+ export const sourceLocale = `dev`;
8
+
9
+ /**
10
+ * The other locale codes that this application is localized into. Sorted
11
+ * lexicographically.
12
+ */
13
+ export const targetLocales = [
14
+ `be`,
15
+ `de`,
16
+ `en`,
17
+ ];
18
+
19
+ /**
20
+ * All valid project locale codes. Sorted lexicographically.
21
+ */
22
+ export const allLocales = [
23
+ `be`,
24
+ `de`,
25
+ `dev`,
26
+ `en`,
27
+ ];
package/xliff/be.xlf ADDED
@@ -0,0 +1,85 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
3
+ <file target-language="be" source-language="dev" original="lit-localize-inputs" datatype="plaintext">
4
+ <body>
5
+ <trans-unit id="pd.datepicker.month.jan">
6
+ <source>Januar</source>
7
+ </trans-unit>
8
+ <trans-unit id="pd.datepicker.month.feb">
9
+ <source>Februar</source>
10
+ </trans-unit>
11
+ <trans-unit id="pd.datepicker.month.mar">
12
+ <source>März</source>
13
+ </trans-unit>
14
+ <trans-unit id="pd.datepicker.month.apr">
15
+ <source>April</source>
16
+ </trans-unit>
17
+ <trans-unit id="pd.datepicker.month.may">
18
+ <source>Mai</source>
19
+ </trans-unit>
20
+ <trans-unit id="pd.datepicker.month.jun">
21
+ <source>Juni</source>
22
+ </trans-unit>
23
+ <trans-unit id="pd.datepicker.month.jul">
24
+ <source>Juli</source>
25
+ </trans-unit>
26
+ <trans-unit id="pd.datepicker.month.aug">
27
+ <source>August</source>
28
+ </trans-unit>
29
+ <trans-unit id="pd.datepicker.month.sep">
30
+ <source>September</source>
31
+ </trans-unit>
32
+ <trans-unit id="pd.datepicker.month.oct">
33
+ <source>Oktober</source>
34
+ </trans-unit>
35
+ <trans-unit id="pd.datepicker.month.nov">
36
+ <source>November</source>
37
+ </trans-unit>
38
+ <trans-unit id="pd.datepicker.month.dec">
39
+ <source>Dezember</source>
40
+ </trans-unit>
41
+ <trans-unit id="pd.datepicker.day.sun">
42
+ <source>Sonntag</source>
43
+ </trans-unit>
44
+ <trans-unit id="pd.datepicker.day.mon">
45
+ <source>Montag</source>
46
+ </trans-unit>
47
+ <trans-unit id="pd.datepicker.day.tue">
48
+ <source>Dienstag</source>
49
+ </trans-unit>
50
+ <trans-unit id="pd.datepicker.day.wed">
51
+ <source>Mittwoch</source>
52
+ </trans-unit>
53
+ <trans-unit id="pd.datepicker.day.thi">
54
+ <source>Donnerstag</source>
55
+ </trans-unit>
56
+ <trans-unit id="pd.datepicker.day.fri">
57
+ <source>Freitag</source>
58
+ </trans-unit>
59
+ <trans-unit id="pd.datepicker.day.sat">
60
+ <source>Samstag</source>
61
+ </trans-unit>
62
+ <trans-unit id="pd.datepicker.shortday.mon">
63
+ <source>Mo</source>
64
+ </trans-unit>
65
+ <trans-unit id="pd.datepicker.shortday.tue">
66
+ <source>Di</source>
67
+ </trans-unit>
68
+ <trans-unit id="pd.datepicker.shortday.wed">
69
+ <source>Mi</source>
70
+ </trans-unit>
71
+ <trans-unit id="pd.datepicker.shortday.thi">
72
+ <source>Do</source>
73
+ </trans-unit>
74
+ <trans-unit id="pd.datepicker.shortday.fri">
75
+ <source>Fr</source>
76
+ </trans-unit>
77
+ <trans-unit id="pd.datepicker.shortday.sat">
78
+ <source>Sa</source>
79
+ </trans-unit>
80
+ <trans-unit id="pd.datepicker.shortday.sun">
81
+ <source>So</source>
82
+ </trans-unit>
83
+ </body>
84
+ </file>
85
+ </xliff>
package/xliff/de.xlf ADDED
@@ -0,0 +1,85 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
3
+ <file target-language="de" source-language="dev" original="lit-localize-inputs" datatype="plaintext">
4
+ <body>
5
+ <trans-unit id="pd.datepicker.month.jan">
6
+ <source>Januar</source>
7
+ </trans-unit>
8
+ <trans-unit id="pd.datepicker.month.feb">
9
+ <source>Februar</source>
10
+ </trans-unit>
11
+ <trans-unit id="pd.datepicker.month.mar">
12
+ <source>März</source>
13
+ </trans-unit>
14
+ <trans-unit id="pd.datepicker.month.apr">
15
+ <source>April</source>
16
+ </trans-unit>
17
+ <trans-unit id="pd.datepicker.month.may">
18
+ <source>Mai</source>
19
+ </trans-unit>
20
+ <trans-unit id="pd.datepicker.month.jun">
21
+ <source>Juni</source>
22
+ </trans-unit>
23
+ <trans-unit id="pd.datepicker.month.jul">
24
+ <source>Juli</source>
25
+ </trans-unit>
26
+ <trans-unit id="pd.datepicker.month.aug">
27
+ <source>August</source>
28
+ </trans-unit>
29
+ <trans-unit id="pd.datepicker.month.sep">
30
+ <source>September</source>
31
+ </trans-unit>
32
+ <trans-unit id="pd.datepicker.month.oct">
33
+ <source>Oktober</source>
34
+ </trans-unit>
35
+ <trans-unit id="pd.datepicker.month.nov">
36
+ <source>November</source>
37
+ </trans-unit>
38
+ <trans-unit id="pd.datepicker.month.dec">
39
+ <source>Dezember</source>
40
+ </trans-unit>
41
+ <trans-unit id="pd.datepicker.day.sun">
42
+ <source>Sonntag</source>
43
+ </trans-unit>
44
+ <trans-unit id="pd.datepicker.day.mon">
45
+ <source>Montag</source>
46
+ </trans-unit>
47
+ <trans-unit id="pd.datepicker.day.tue">
48
+ <source>Dienstag</source>
49
+ </trans-unit>
50
+ <trans-unit id="pd.datepicker.day.wed">
51
+ <source>Mittwoch</source>
52
+ </trans-unit>
53
+ <trans-unit id="pd.datepicker.day.thi">
54
+ <source>Donnerstag</source>
55
+ </trans-unit>
56
+ <trans-unit id="pd.datepicker.day.fri">
57
+ <source>Freitag</source>
58
+ </trans-unit>
59
+ <trans-unit id="pd.datepicker.day.sat">
60
+ <source>Samstag</source>
61
+ </trans-unit>
62
+ <trans-unit id="pd.datepicker.shortday.mon">
63
+ <source>Mo</source>
64
+ </trans-unit>
65
+ <trans-unit id="pd.datepicker.shortday.tue">
66
+ <source>Di</source>
67
+ </trans-unit>
68
+ <trans-unit id="pd.datepicker.shortday.wed">
69
+ <source>Mi</source>
70
+ </trans-unit>
71
+ <trans-unit id="pd.datepicker.shortday.thi">
72
+ <source>Do</source>
73
+ </trans-unit>
74
+ <trans-unit id="pd.datepicker.shortday.fri">
75
+ <source>Fr</source>
76
+ </trans-unit>
77
+ <trans-unit id="pd.datepicker.shortday.sat">
78
+ <source>Sa</source>
79
+ </trans-unit>
80
+ <trans-unit id="pd.datepicker.shortday.sun">
81
+ <source>So</source>
82
+ </trans-unit>
83
+ </body>
84
+ </file>
85
+ </xliff>
package/xliff/en.xlf ADDED
@@ -0,0 +1,85 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
3
+ <file target-language="en" source-language="dev" original="lit-localize-inputs" datatype="plaintext">
4
+ <body>
5
+ <trans-unit id="pd.datepicker.month.jan">
6
+ <source>Januar</source>
7
+ </trans-unit>
8
+ <trans-unit id="pd.datepicker.month.feb">
9
+ <source>Februar</source>
10
+ </trans-unit>
11
+ <trans-unit id="pd.datepicker.month.mar">
12
+ <source>März</source>
13
+ </trans-unit>
14
+ <trans-unit id="pd.datepicker.month.apr">
15
+ <source>April</source>
16
+ </trans-unit>
17
+ <trans-unit id="pd.datepicker.month.may">
18
+ <source>Mai</source>
19
+ </trans-unit>
20
+ <trans-unit id="pd.datepicker.month.jun">
21
+ <source>Juni</source>
22
+ </trans-unit>
23
+ <trans-unit id="pd.datepicker.month.jul">
24
+ <source>Juli</source>
25
+ </trans-unit>
26
+ <trans-unit id="pd.datepicker.month.aug">
27
+ <source>August</source>
28
+ </trans-unit>
29
+ <trans-unit id="pd.datepicker.month.sep">
30
+ <source>September</source>
31
+ </trans-unit>
32
+ <trans-unit id="pd.datepicker.month.oct">
33
+ <source>Oktober</source>
34
+ </trans-unit>
35
+ <trans-unit id="pd.datepicker.month.nov">
36
+ <source>November</source>
37
+ </trans-unit>
38
+ <trans-unit id="pd.datepicker.month.dec">
39
+ <source>Dezember</source>
40
+ </trans-unit>
41
+ <trans-unit id="pd.datepicker.day.sun">
42
+ <source>Sonntag</source>
43
+ </trans-unit>
44
+ <trans-unit id="pd.datepicker.day.mon">
45
+ <source>Montag</source>
46
+ </trans-unit>
47
+ <trans-unit id="pd.datepicker.day.tue">
48
+ <source>Dienstag</source>
49
+ </trans-unit>
50
+ <trans-unit id="pd.datepicker.day.wed">
51
+ <source>Mittwoch</source>
52
+ </trans-unit>
53
+ <trans-unit id="pd.datepicker.day.thi">
54
+ <source>Donnerstag</source>
55
+ </trans-unit>
56
+ <trans-unit id="pd.datepicker.day.fri">
57
+ <source>Freitag</source>
58
+ </trans-unit>
59
+ <trans-unit id="pd.datepicker.day.sat">
60
+ <source>Samstag</source>
61
+ </trans-unit>
62
+ <trans-unit id="pd.datepicker.shortday.mon">
63
+ <source>Mo</source>
64
+ </trans-unit>
65
+ <trans-unit id="pd.datepicker.shortday.tue">
66
+ <source>Di</source>
67
+ </trans-unit>
68
+ <trans-unit id="pd.datepicker.shortday.wed">
69
+ <source>Mi</source>
70
+ </trans-unit>
71
+ <trans-unit id="pd.datepicker.shortday.thi">
72
+ <source>Do</source>
73
+ </trans-unit>
74
+ <trans-unit id="pd.datepicker.shortday.fri">
75
+ <source>Fr</source>
76
+ </trans-unit>
77
+ <trans-unit id="pd.datepicker.shortday.sat">
78
+ <source>Sa</source>
79
+ </trans-unit>
80
+ <trans-unit id="pd.datepicker.shortday.sun">
81
+ <source>So</source>
82
+ </trans-unit>
83
+ </body>
84
+ </file>
85
+ </xliff>