diff options
| author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-10-18 14:13:52 +0200 | 
|---|---|---|
| committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-10-18 14:13:52 +0200 | 
| commit | 53e1f68363b7b6f4b13196d583d7f98e16f8ec9d (patch) | |
| tree | 8d40c050a115fab3cf149d45dae1082adf38d30c /templates | |
| parent | a3cb3bda6f3428992908e83023e45dc3ced45619 (diff) | |
Start translating account#interaction segment2.17.10
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/account.html.ep | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index 5539a39..17f708f 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -179,32 +179,32 @@  % if ($num_rx_follow_requests or $num_tx_follow_requests or $num_followers or $num_following or $num_blocked) {  	<div class="row">  		<div class="col s12"> -			<h2>Interaktion</h2> +			<h2><%= L('account.interaction') %></h2>  			<p> -				<a href="/p/<%= $acc->{name} %>">Öffentliches Profil</a> +				<a href="/p/<%= $acc->{name} %>"><%= L('account.profile') %></a>  			</p>  			<table class="striped">  				<tr> -					<th scope="row">Anfragen</th> +					<th scope="row"><%= L('account.interaction.requests') %></th>  					<td>  						% if ($num_rx_follow_requests == 0) { -							<span style="color: #999999;">keine eingehend</span> +							<span style="color: #999999;"><%= L('account.interaction.requests.incoming.none') %></span>  						% }  						% elsif ($num_rx_follow_requests == 1) { -							<a href="/account/social/follow-requests-received"><strong>eine</strong> eingehend</a> +							<a href="/account/social/follow-requests-received"><strong><%= L('account.interaction.one') %></strong> <%= L('account.interaction.requests.incoming.some') %></a>  						% }  						% else { -							<a href="/account/social/follow-requests-received"><strong><%= $num_rx_follow_requests %></strong> eingehend</a> +							<a href="/account/social/follow-requests-received"><strong><%= $num_rx_follow_requests %></strong> <%= L('account.interaction.requests.incoming.some') %></a>  						% }  						<br/>  						% if ($num_tx_follow_requests == 0) { -							<span style="color: #999999;">keine ausgehend</span> +							<span style="color: #999999;"><%= L('account.interaction.requests.outgoing.none') %></span>  						% }  						% elsif ($num_tx_follow_requests == 1) { -							<a href="/account/social/follow-requests-sent"><strong>eine</strong> ausgehend</a> +							<a href="/account/social/follow-requests-sent"><strong><%= L('account.interaction.one') %></strong> <%= L('account.interaction.requests.outgoing.some') %></a>  						% }  						% else { -							<a href="/account/social/follow-requests-sent"><strong><%= $num_tx_follow_requests %></strong> ausgehend</a> +							<a href="/account/social/follow-requests-sent"><strong><%= $num_tx_follow_requests %></strong> <%= L('account.interaction.requests.outgoing.some') %></a>  						% }  					</td>  				</tr>  | 
