aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/global_timeline.php
diff options
context:
space:
mode:
authorwinter2024-12-31 14:30:16 +0000
committerwinter2024-12-31 14:30:16 +0000
commitad554b48e7dc355d9b33eede98f4e3e829fd867e (patch)
treeeb11cd4357bdbe2964b9d04495ab2e6c7212d9ed /templates/global_timeline.php
parent721674973ca0a4d98cd081e9ff130c3356ddac03 (diff)
switch to my own translations system
i really don't like gettext
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 f8fca52..f475656 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' => __('timeline.global')], function () {
global $notes;
call_template('alertbox', [
'variety' => 'info',
- 'message' => _('This timeline shows all known public indexable notes.')
+ 'message' => __('timeline.global.description')
]);
foreach ($notes as $n) {
call_template('note', ['note' => $n]);