aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/global_timeline.php
diff options
context:
space:
mode:
authorwinter2024-12-24 17:46:51 +0000
committerwinter2024-12-24 17:46:51 +0000
commit721674973ca0a4d98cd081e9ff130c3356ddac03 (patch)
tree5caa082baa4f23bd8a88f4f268fea6d9233f6553 /templates/global_timeline.php
parentd5a57276eb27e215dd0b1bd5eb67ac26acc9575b (diff)
implement ui translations using gettext
this was horrible i don't like gettext anymore
Diffstat (limited to 'templates/global_timeline.php')
-rw-r--r--templates/global_timeline.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/global_timeline.php b/templates/global_timeline.php
index bf91df0..f8fca52 100644
--- a/templates/global_timeline.php
+++ b/templates/global_timeline.php
@@ -1,8 +1,8 @@
-<?php call_template('skeleton', ['pageTitle' => 'Global timeline'], function () {
+<?php call_template('skeleton', ['pageTitle' => _('Global timeline')], function () {
global $notes;
call_template('alertbox', [
'variety' => 'info',
- 'message' => 'This timeline shows all known public indexable notes.'
+ 'message' => _('This timeline shows all known public indexable notes.')
]);
foreach ($notes as $n) {
call_template('note', ['note' => $n]);