mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2026-06-21 05:50:30 +00:00
🔠 Standardize brand name casing to **EINUNDZWANZIG** across translations, controllers, views, and configurations
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ __('Login bestätigt') }} — Einundzwanzig</title>
|
||||
<title>{{ __('Login bestätigt') }} — EINUNDZWANZIG</title>
|
||||
<style>
|
||||
body { margin: 0; min-height: 100dvh; display: flex; align-items: center; justify-content: center;
|
||||
background: #09090b; color: #fafafa; font-family: ui-sans-serif, system-ui, sans-serif; }
|
||||
@@ -23,7 +23,7 @@
|
||||
<div class="card">
|
||||
<div class="check">✅</div>
|
||||
<h1>{{ __('Login bestätigt') }}</h1>
|
||||
<p>{{ __('Tippe auf den Button, um zurück zur Einundzwanzig-App zu gelangen.') }}</p>
|
||||
<p>{{ __('Tippe auf den Button, um zurück zur EINUNDZWANZIG-App zu gelangen.') }}</p>
|
||||
<a class="button" href="{{ $deepLink }}">{{ __('Zurück zur App') }}</a>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ __('Anmeldung mit Nostr') }} — Einundzwanzig</title>
|
||||
<title>{{ __('Anmeldung mit Nostr') }} — EINUNDZWANZIG</title>
|
||||
<style>
|
||||
body { margin: 0; min-height: 100dvh; display: flex; align-items: center; justify-content: center;
|
||||
background: #09090b; color: #fafafa; font-family: ui-sans-serif, system-ui, sans-serif; }
|
||||
@@ -40,11 +40,11 @@
|
||||
const eventEnc = encodeURIComponent(JSON.stringify(event));
|
||||
const callbackUrl = @js($callbackUrl);
|
||||
const query = 'compressionType=none&returnType=event&type=sign_event'
|
||||
+ '&appName=Einundzwanzig&callbackUrl=' + encodeURIComponent(callbackUrl);
|
||||
+ '&appName=EINUNDZWANZIG&callbackUrl=' + encodeURIComponent(callbackUrl);
|
||||
|
||||
window.location.href = 'intent:' + eventEnc + '?' + query
|
||||
+ '#Intent;scheme=nostrsigner;category=android.intent.category.BROWSABLE'
|
||||
+ ';S.type=sign_event;S.returnType=event;S.appName=Einundzwanzig'
|
||||
+ ';S.type=sign_event;S.returnType=event;S.appName=EINUNDZWANZIG'
|
||||
+ ';S.callbackUrl=' + callbackUrl
|
||||
+ ';end';
|
||||
}
|
||||
|
||||
@@ -3,5 +3,5 @@
|
||||
<x-app-logo-icon class="size-5 fill-current text-white dark:text-black"/>
|
||||
</div>
|
||||
<div class="ms-1 grid flex-1 text-start text-sm">
|
||||
<span class="mb-0.5 truncate leading-tight font-semibold">{{ __('Einundzwanzig Portal') }}</span>
|
||||
<span class="mb-0.5 truncate leading-tight font-semibold">{{ __('EINUNDZWANZIG Portal') }}</span>
|
||||
</div>
|
||||
|
||||
@@ -278,7 +278,7 @@ class extends Component {
|
||||
<flux:label>{{ __('Gemeinschaft') }}</flux:label>
|
||||
<flux:select wire:model="community">
|
||||
<flux:select.option value="">{{ __('Keine') }}</flux:select.option>
|
||||
<flux:select.option value="einundzwanzig">{{ __('Einundzwanzig Community') }}</flux:select.option>
|
||||
<flux:select.option value="einundzwanzig">{{ __('EINUNDZWANZIG Community') }}</flux:select.option>
|
||||
<flux:select.option value="bitcoin">{{ __('Allgemeine Bitcoin Community') }}</flux:select.option>
|
||||
</flux:select>
|
||||
<flux:description>{{ __('Gemeinschafts- oder Organisationsname') }}</flux:description>
|
||||
|
||||
@@ -381,7 +381,7 @@ class extends Component {
|
||||
<flux:label>{{ __('Gemeinschaft') }}</flux:label>
|
||||
<flux:select wire:model="community">
|
||||
<flux:select.option value="">{{ __('Keine') }}</flux:select.option>
|
||||
<flux:select.option value="einundzwanzig">{{ __('Einundzwanzig Community') }}</flux:select.option>
|
||||
<flux:select.option value="einundzwanzig">{{ __('EINUNDZWANZIG Community') }}</flux:select.option>
|
||||
<flux:select.option value="bitcoin">{{ __('Allgemeine Bitcoin Community') }}</flux:select.option>
|
||||
</flux:select>
|
||||
<flux:description>{{ __('Gemeinschafts- oder Organisationsname') }}</flux:description>
|
||||
|
||||
@@ -149,7 +149,7 @@ class extends Component {
|
||||
@if ($meetup->community === 'bitcoin')
|
||||
{{ __('Allgemeine Bitcoin Community') }}
|
||||
@elseif ($meetup->community === 'einundzwanzig')
|
||||
{{ __('Einundzwanzig Community') }}
|
||||
{{ __('EINUNDZWANZIG Community') }}
|
||||
@else
|
||||
{{ $meetup->community }}
|
||||
@endif
|
||||
|
||||
Reference in New Issue
Block a user