@progressive-development/pd-content 0.1.73 → 0.1.74
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/package.json +1 -1
- package/src/PdMoreInfo.js +2 -2
- package/src/generated/locale/de.js +2 -2
- package/src/generated/locale/en.js +2 -2
- package/xliff/be.xlf +2 -2
- package/xliff/de.xlf +2 -4
- package/xliff/en.xlf +4 -2
package/package.json
CHANGED
package/src/PdMoreInfo.js
CHANGED
|
@@ -61,14 +61,14 @@ export class PdMoreInfo extends LitElement {
|
|
|
61
61
|
return html`
|
|
62
62
|
<p>
|
|
63
63
|
<slot name="small-view"></slot>
|
|
64
|
-
<a @click="${this._showMoreInfo}">${msg("
|
|
64
|
+
<a @click="${this._showMoreInfo}">${msg("Mehr Informationen", {id: "pd.moreInfo.more"})}</a>
|
|
65
65
|
</p>
|
|
66
66
|
`;
|
|
67
67
|
}
|
|
68
68
|
return html`
|
|
69
69
|
<p>
|
|
70
70
|
<slot name="large-view"></slot>
|
|
71
|
-
<a @click="${this._showLessInfo}">${msg("
|
|
71
|
+
<a @click="${this._showLessInfo}">${msg("Text ausblenden", {id: "pd.moreInfo.less"})}</a>
|
|
72
72
|
</p>
|
|
73
73
|
`;
|
|
74
74
|
}
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
10
|
|
|
11
11
|
export const templates = {
|
|
12
|
-
'pd.moreInfo.
|
|
13
|
-
'pd.moreInfo.
|
|
12
|
+
'pd.moreInfo.more': `Mehr Informationen`,
|
|
13
|
+
'pd.moreInfo.less': `Text ausblenden`,
|
|
14
14
|
};
|
|
15
15
|
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
10
10
|
|
|
11
11
|
export const templates = {
|
|
12
|
-
'pd.moreInfo.
|
|
13
|
-
'pd.moreInfo.
|
|
12
|
+
'pd.moreInfo.less': `Less information`,
|
|
13
|
+
'pd.moreInfo.more': `More information`,
|
|
14
14
|
};
|
|
15
15
|
|
package/xliff/be.xlf
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
<file target-language="be" source-language="dev" original="lit-localize-inputs" datatype="plaintext">
|
|
4
4
|
<body>
|
|
5
5
|
<trans-unit id="pd.moreInfo.more">
|
|
6
|
-
<source>
|
|
6
|
+
<source>Mehr Informationen</source>
|
|
7
7
|
<target>Meer informatie</target>
|
|
8
8
|
</trans-unit>
|
|
9
9
|
<trans-unit id="pd.moreInfo.less">
|
|
10
|
-
<source>
|
|
10
|
+
<source>Text ausblenden</source>
|
|
11
11
|
<target>Minder informatie</target>
|
|
12
12
|
</trans-unit>
|
|
13
13
|
</body>
|
package/xliff/de.xlf
CHANGED
|
@@ -3,12 +3,10 @@
|
|
|
3
3
|
<file target-language="de" source-language="dev" original="lit-localize-inputs" datatype="plaintext">
|
|
4
4
|
<body>
|
|
5
5
|
<trans-unit id="pd.moreInfo.more">
|
|
6
|
-
<source>
|
|
7
|
-
<target>Mehr Informationen</target>
|
|
6
|
+
<source>Mehr Informationen</source>
|
|
8
7
|
</trans-unit>
|
|
9
8
|
<trans-unit id="pd.moreInfo.less">
|
|
10
|
-
<source>
|
|
11
|
-
<target>Text ausblenden</target>
|
|
9
|
+
<source>Text ausblenden</source>
|
|
12
10
|
</trans-unit>
|
|
13
11
|
</body>
|
|
14
12
|
</file>
|
package/xliff/en.xlf
CHANGED
|
@@ -3,10 +3,12 @@
|
|
|
3
3
|
<file target-language="en" source-language="dev" original="lit-localize-inputs" datatype="plaintext">
|
|
4
4
|
<body>
|
|
5
5
|
<trans-unit id="pd.moreInfo.more">
|
|
6
|
-
<source>
|
|
6
|
+
<source>Mehr Informationen</source>
|
|
7
|
+
<target>More information</target>
|
|
7
8
|
</trans-unit>
|
|
8
9
|
<trans-unit id="pd.moreInfo.less">
|
|
9
|
-
<source>
|
|
10
|
+
<source>Text ausblenden</source>
|
|
11
|
+
<target>Less information</target>
|
|
10
12
|
</trans-unit>
|
|
11
13
|
</body>
|
|
12
14
|
</file>
|