Skip to content

Commit 9cb8857

Browse files
authored
French and German translations, etc. (#6)
* Added ecliptic longitude tooltips to the large sun and moon icons, instead of just the smaller true positions markers. * Fixed a bug with showing the Advanced Options panel while to Control panel is collapsed. * Additional translations to French and German. * Fixed inaccuracies in placement of sun/moon/planet markers. * Added tooltips for ecliptic longitude. * Fixed Firefox map drawing bug. * Fixed i18n website path formation.
1 parent 5923f2c commit 9cb8857

31 files changed

Lines changed: 4500 additions & 688 deletions

.stylelintrc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@
1111
"no-descending-specificity": null,
1212
"no-empty-source": null,
1313
"no-invalid-position-at-import-rule": null,
14+
"property-no-unknown": [
15+
true,
16+
{
17+
"ignoreProperties": [
18+
"alignment-baseline"
19+
]
20+
}
21+
],
1422
"scss/at-rule-no-unknown": true,
1523
"selector-class-pattern": null,
1624
"selector-descendant-combinator-no-non-space": null,

.vscode/settings.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
{
22
"cSpell.words": [
33
"arya",
4+
"čeština",
5+
"confirmdialog",
46
"CREPUSCULUM",
7+
"DATETIME",
58
"EQUISOLSTICE",
69
"habs",
710
"inputtext",
811
"Kyiv",
12+
"mfvh",
913
"NOCTIS",
14+
"nums",
1015
"OCCASUS",
1116
"orloj",
1217
"ORTUS",
@@ -15,9 +20,14 @@
1520
"primeng",
1621
"radiobutton",
1722
"Rafie",
23+
"recalibrated",
24+
"recalibrations",
1825
"Recents",
1926
"subzone",
2027
"subzones",
21-
"Tošovský"
22-
]
23-
}
28+
"tieredmenu",
29+
"Tošovský",
30+
"tspan"
31+
],
32+
"xliffSync.baseFile": "messages.xlf"
33+
}

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
## 1.3.3
2+
3+
* Added ecliptic longitude tooltips to the large sun and moon icons, instead of just the smaller true positions markers.
4+
* Fixed a bug with showing the Advanced Options panel while to Control panel is collapsed.
5+
6+
## 1.3.2
7+
8+
* Additional translations to French and German.
9+
* Fixed inaccuracies in placement of sun/moon/planet markers.
10+
* Added tooltips for ecliptic longitude.
11+
12+
## 1.3.1
13+
14+
* Fixed Firefox map drawing bug.
15+
* Fixed i18n website path formation.
16+
17+
## 1.3.0
18+
19+
* New “Advanced Options” panel.
20+
* Added animation play/fast-forward/stop buttons.
21+
* Option added to display greater mechanical detail of the clock.
22+
* Option added for emulation of mechanical timekeeping (supersedes “Align sun to hand pointer” from version 1.2.0).
23+
* Option for sun/moon "real position" markers.
24+
* Option to show addition planet positions (Mercury, Venus, Mars, Jupiter, Saturn).
25+
* For greater consistency with post-2018 appearance, globe map can be hidden.
26+
* Collapsed control panel displays currently-set time.
27+
* Option added for keeping SVG shading at the risk of slower graphics.
28+
* Added info panel with time readouts, sun/moon rise/set times, and other data.
29+
30+
## 1.2.0
31+
32+
* New color scheme to match October 2018 renovation, with older colors optionally available.
33+
* Option to align sun icon with hand pointer (more authentic, less accurate sun positioning).
34+
35+
## 1.1.0
36+
37+
* Initial work on internationalization/localization, with Czech and Spanish translations.
38+
* Control panel is now collapsible.
39+
140
## 1.0.1
241

342
* Updated color theme for controls.

angular.json

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,14 @@
2222
"cs": {
2323
"translation": "src/locales/messages.cs.xlf"
2424
},
25+
"de": {
26+
"translation": "src/locales/messages.de.xlf"
27+
},
2528
"es": {
2629
"translation": "src/locales/messages.es.xlf"
30+
},
31+
"fr": {
32+
"translation": "src/locales/messages.fr.xlf"
2733
}
2834
}
2935
},
@@ -61,8 +67,8 @@
6167
},
6268
{
6369
"type": "anyComponentStyle",
64-
"maximumWarning": "5kb",
65-
"maximumError": "8kb"
70+
"maximumWarning": "8kb",
71+
"maximumError": "10kb"
6672
}
6773
],
6874
"fileReplacements": [
@@ -79,18 +85,25 @@
7985
"vendorChunk": true,
8086
"extractLicenses": false,
8187
"sourceMap": true,
82-
"namedChunks": true
88+
"namedChunks": true,
89+
"localize": ["en-US"]
8390
},
8491
"cs": {
8592
"localize": ["cs"]
8693
},
94+
"de": {
95+
"localize": ["de"]
96+
},
8797
"es": {
8898
"localize": ["es"]
8999
},
100+
"fr": {
101+
"localize": ["fr"]
102+
},
90103
"en-US": {
91104
"localize": ["en-US"]
92105
}
93-
},
106+
},
94107
"defaultConfiguration": "production"
95108
},
96109
"serve": {
@@ -105,9 +118,15 @@
105118
"cs": {
106119
"browserTarget": "prague-clock:build:cs"
107120
},
121+
"de": {
122+
"browserTarget": "prague-clock:build:de"
123+
},
108124
"es": {
109125
"browserTarget": "prague-clock:build:es"
110126
},
127+
"fr": {
128+
"browserTarget": "prague-clock:build:fr"
129+
},
111130
"en-US": {
112131
"browserTarget": "prague-clock:build:en-US"
113132
}

0 commit comments

Comments
 (0)