Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: change mail in about view #133

Merged
merged 1 commit into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/locales/da.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"imprint7": "Torsten Koß",
"imprint8": "USt-IdNr. gemäß § 27a Umsatzsteuergesetz: DE813840400",
"imprint9": "dataport.de",
"imprint10": "poststelle[at]dataport.de",
"imprint10": "kulturfinder[at]dataport.de",
"privacy00": "1) Welche Daten werden erfasst und wie werden sie verwendet?",
"privacy01": "a) Technische Merkmale",
"privacy02": "In unseren Server Log Files speichern wir Informationen, die Ihr Browser automatisch aus technischen Gründen an uns übermittelt. Dies sind:",
Expand Down
2 changes: 1 addition & 1 deletion src/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
"imprint7": "Torsten Koß",
"imprint8": "USt-IdNr. gemäß § 27a Umsatzsteuergesetz: DE813840400",
"imprint9": "dataport.de",
"imprint10": "poststelle[at]dataport.de",
"imprint10": "kulturfinder[at]dataport.de",
"privacy00": "1) Welche Daten werden erfasst und wie werden sie verwendet?",
"privacy01": "a) Technische Merkmale",
"privacy02": "In unseren Server Log Files speichern wir Informationen, die Ihr Browser automatisch aus technischen Gründen an uns übermittelt. Dies sind:",
Expand Down
2 changes: 1 addition & 1 deletion src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"imprint7": "Torsten Koß",
"imprint8": "USt-IdNr. gemäß § 27a Umsatzsteuergesetz: DE813840400",
"imprint9": "dataport.de",
"imprint10": "poststelle[at]dataport.de",
"imprint10": "kulturfinder[at]dataport.de",
"privacy00": "1) Welche Daten werden erfasst und wie werden sie verwendet?",
"privacy01": "a) Technische Merkmale",
"privacy02": "In unseren Server Log Files speichern wir Informationen, die Ihr Browser automatisch aus technischen Gründen an uns übermittelt. Dies sind:",
Expand Down
8 changes: 4 additions & 4 deletions src/views/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
>
<icon-globe/>
</icon-base>
<a :href="'https://' + 'dataport.de'" target="_blank">
<a :href="'https://dataport.de'" target="_blank">
{{ $t('about.hb.imprint9') }}<br>
</a>
</span>
Expand All @@ -156,7 +156,7 @@
>
<icon-mail/>
</icon-base>
<a :href="'mailto:' + 'poststelle@dataport.de'">
<a :href="'mailto:kulturfinder@dataport.de'">
{{ $t('about.hb.imprint10') }}<br>
</a>
</span>
Expand Down Expand Up @@ -387,8 +387,8 @@ export default {
getCookie(cname) {
const name = cname + '='
const ca = document.cookie.split(';')
for (let i = 0; i < ca.length; i++) {
let c = ca[i]
for (const element of ca) {
let c = element
while (c.startsWith(' ')) {
c = c.substring(1)
}
Expand Down
Loading