Skip to content

Commit

Permalink
deploy: f49f174
Browse files Browse the repository at this point in the history
  • Loading branch information
warm-coolguy committed Feb 4, 2025
1 parent 89e8149 commit 19be426
Show file tree
Hide file tree
Showing 31 changed files with 4,586 additions and 4,568 deletions.
13 changes: 7 additions & 6 deletions docs/afm/core.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ <h3 id="addplugins" tabindex="-1">addPlugins</h3>
instance.$store.dispatch('addComponent', {
name: 'plugin', // unique technical name
plugin: Plugin, // a vue component
language, // an i18n locale batch
locales, // an i18n Locale[]
language, // @deprecated an i18n locale batch
options, // configuration; overriddable with mapConfiguration on createMap
storeModule, // vuex store module, if required
})
Expand Down Expand Up @@ -112,7 +113,7 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
</tr>
<tr>
<td>locales</td>
<td>LanguageOption[]?</td>
<td>Locale[]?</td>
<td>All locales in POLAR's plugins can be overridden to fit your needs.</td>
</tr>
<tr>
Expand Down Expand Up @@ -145,7 +146,7 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
stylePath: '../dist/polar-client.css',
checkServiceAvailability: true,
language: 'de',
locales, // the languageOptions object will normally be outsourced to another file
locales, // the locales object will normally be outsourced to another file
layerConf, // the layerConf object will normally be outsourced to another file - for more information, see the relevant chapter
layers: [
// parts of the layer configuration can be outsourced to another file
Expand Down Expand Up @@ -179,10 +180,10 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
}
</code></pre>
</details>
<h5 id="mapconfiguration.languageoption" tabindex="-1">mapConfiguration.LanguageOption</h5>
<h5 id="mapconfiguration.locale" tabindex="-1">mapConfiguration.Locale</h5>
<p>A language option is an object consisting of a type (its language key) and the i18next resource definition. You may e.g. decide that the texts offered in the LayerChooser do not fit the style of your client, or that they could be more precise in your situation since you're only using <em>very specific</em> overlays.</p>
<p>An example for a LanguageOption array usable in <code>createMap</code> is this array:</p>
<pre><code class="language-ts">const languageOptions: LanguageOption[] = [
<p>An example for a Locale array usable in <code>createMap</code> is this array:</p>
<pre><code class="language-ts">const locales: Locale[] = [
{
type: 'de',
resources: {
Expand Down
4 changes: 2 additions & 2 deletions docs/afm/plugin-legend.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ <h2>Locales</h2>

<tr>
<td>plugins.legend.openLegendTo</td>
<td>$t(common:plugins.legend.legendTo) öffnen</td>
<td>Open $t(common:plugins.legend.legendTo)</td>
<td>$t(plugins.legend.legendTo) öffnen</td>
<td>Open $t(plugins.legend.legendTo)</td>
</tr>

<tr>
Expand Down
13 changes: 7 additions & 6 deletions docs/diplan/core.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ <h3 id="addplugins" tabindex="-1">addPlugins</h3>
instance.$store.dispatch('addComponent', {
name: 'plugin', // unique technical name
plugin: Plugin, // a vue component
language, // an i18n locale batch
locales, // an i18n Locale[]
language, // @deprecated an i18n locale batch
options, // configuration; overriddable with mapConfiguration on createMap
storeModule, // vuex store module, if required
})
Expand Down Expand Up @@ -112,7 +113,7 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
</tr>
<tr>
<td>locales</td>
<td>LanguageOption[]?</td>
<td>Locale[]?</td>
<td>All locales in POLAR's plugins can be overridden to fit your needs.</td>
</tr>
<tr>
Expand Down Expand Up @@ -145,7 +146,7 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
stylePath: '../dist/polar-client.css',
checkServiceAvailability: true,
language: 'de',
locales, // the languageOptions object will normally be outsourced to another file
locales, // the locales object will normally be outsourced to another file
layerConf, // the layerConf object will normally be outsourced to another file - for more information, see the relevant chapter
layers: [
// parts of the layer configuration can be outsourced to another file
Expand Down Expand Up @@ -179,10 +180,10 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
}
</code></pre>
</details>
<h5 id="mapconfiguration.languageoption" tabindex="-1">mapConfiguration.LanguageOption</h5>
<h5 id="mapconfiguration.locale" tabindex="-1">mapConfiguration.Locale</h5>
<p>A language option is an object consisting of a type (its language key) and the i18next resource definition. You may e.g. decide that the texts offered in the LayerChooser do not fit the style of your client, or that they could be more precise in your situation since you're only using <em>very specific</em> overlays.</p>
<p>An example for a LanguageOption array usable in <code>createMap</code> is this array:</p>
<pre><code class="language-ts">const languageOptions: LanguageOption[] = [
<p>An example for a Locale array usable in <code>createMap</code> is this array:</p>
<pre><code class="language-ts">const locales: Locale[] = [
{
type: 'de',
resources: {
Expand Down
2 changes: 1 addition & 1 deletion docs/diplan/dist/polar-client.css

Large diffs are not rendered by default.

84 changes: 42 additions & 42 deletions docs/diplan/dist/polar-client.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/diplan/dist/polar-client.js.map

Large diffs are not rendered by default.

13 changes: 7 additions & 6 deletions docs/generic/core.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ <h3 id="addplugins" tabindex="-1">addPlugins</h3>
instance.$store.dispatch('addComponent', {
name: 'plugin', // unique technical name
plugin: Plugin, // a vue component
language, // an i18n locale batch
locales, // an i18n Locale[]
language, // @deprecated an i18n locale batch
options, // configuration; overriddable with mapConfiguration on createMap
storeModule, // vuex store module, if required
})
Expand Down Expand Up @@ -112,7 +113,7 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
</tr>
<tr>
<td>locales</td>
<td>LanguageOption[]?</td>
<td>Locale[]?</td>
<td>All locales in POLAR's plugins can be overridden to fit your needs.</td>
</tr>
<tr>
Expand Down Expand Up @@ -145,7 +146,7 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
stylePath: '../dist/polar-client.css',
checkServiceAvailability: true,
language: 'de',
locales, // the languageOptions object will normally be outsourced to another file
locales, // the locales object will normally be outsourced to another file
layerConf, // the layerConf object will normally be outsourced to another file - for more information, see the relevant chapter
layers: [
// parts of the layer configuration can be outsourced to another file
Expand Down Expand Up @@ -179,10 +180,10 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
}
</code></pre>
</details>
<h5 id="mapconfiguration.languageoption" tabindex="-1">mapConfiguration.LanguageOption</h5>
<h5 id="mapconfiguration.locale" tabindex="-1">mapConfiguration.Locale</h5>
<p>A language option is an object consisting of a type (its language key) and the i18next resource definition. You may e.g. decide that the texts offered in the LayerChooser do not fit the style of your client, or that they could be more precise in your situation since you're only using <em>very specific</em> overlays.</p>
<p>An example for a LanguageOption array usable in <code>createMap</code> is this array:</p>
<pre><code class="language-ts">const languageOptions: LanguageOption[] = [
<p>An example for a Locale array usable in <code>createMap</code> is this array:</p>
<pre><code class="language-ts">const locales: Locale[] = [
{
type: 'de',
resources: {
Expand Down
4 changes: 2 additions & 2 deletions docs/generic/plugin-legend.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ <h2>Locales</h2>

<tr>
<td>plugins.legend.openLegendTo</td>
<td>$t(common:plugins.legend.legendTo) öffnen</td>
<td>Open $t(common:plugins.legend.legendTo)</td>
<td>$t(plugins.legend.legendTo) öffnen</td>
<td>Open $t(plugins.legend.legendTo)</td>
</tr>

<tr>
Expand Down
13 changes: 7 additions & 6 deletions docs/meldemichel/core.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ <h3 id="addplugins" tabindex="-1">addPlugins</h3>
instance.$store.dispatch('addComponent', {
name: 'plugin', // unique technical name
plugin: Plugin, // a vue component
language, // an i18n locale batch
locales, // an i18n Locale[]
language, // @deprecated an i18n locale batch
options, // configuration; overriddable with mapConfiguration on createMap
storeModule, // vuex store module, if required
})
Expand Down Expand Up @@ -112,7 +113,7 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
</tr>
<tr>
<td>locales</td>
<td>LanguageOption[]?</td>
<td>Locale[]?</td>
<td>All locales in POLAR's plugins can be overridden to fit your needs.</td>
</tr>
<tr>
Expand Down Expand Up @@ -145,7 +146,7 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
stylePath: '../dist/polar-client.css',
checkServiceAvailability: true,
language: 'de',
locales, // the languageOptions object will normally be outsourced to another file
locales, // the locales object will normally be outsourced to another file
layerConf, // the layerConf object will normally be outsourced to another file - for more information, see the relevant chapter
layers: [
// parts of the layer configuration can be outsourced to another file
Expand Down Expand Up @@ -179,10 +180,10 @@ <h4 id="mapconfiguration" tabindex="-1">mapConfiguration</h4>
}
</code></pre>
</details>
<h5 id="mapconfiguration.languageoption" tabindex="-1">mapConfiguration.LanguageOption</h5>
<h5 id="mapconfiguration.locale" tabindex="-1">mapConfiguration.Locale</h5>
<p>A language option is an object consisting of a type (its language key) and the i18next resource definition. You may e.g. decide that the texts offered in the LayerChooser do not fit the style of your client, or that they could be more precise in your situation since you're only using <em>very specific</em> overlays.</p>
<p>An example for a LanguageOption array usable in <code>createMap</code> is this array:</p>
<pre><code class="language-ts">const languageOptions: LanguageOption[] = [
<p>An example for a Locale array usable in <code>createMap</code> is this array:</p>
<pre><code class="language-ts">const locales: Locale[] = [
{
type: 'de',
resources: {
Expand Down
Loading

0 comments on commit 19be426

Please sign in to comment.