aboutsummaryrefslogtreecommitdiff
path: root/mod
diff options
context:
space:
mode:
Diffstat (limited to 'mod')
-rw-r--r--mod/thewire/languages/en.php2
-rw-r--r--mod/thewire/views/default/object/thewire.php4
2 files changed, 4 insertions, 2 deletions
diff --git a/mod/thewire/languages/en.php b/mod/thewire/languages/en.php
index 0fb114028..0f1055273 100644
--- a/mod/thewire/languages/en.php
+++ b/mod/thewire/languages/en.php
@@ -19,7 +19,7 @@
'thewire:add' => "Post to the wire",
'thewire:text' => "A note on the wire",
'thewire:reply' => "Reply",
- 'thewire:via' => "via",
+ 'thewire:via_method' => "via %s",
'thewire:wired' => "Posted to the wire",
'thewire:charleft' => "characters remaining",
'item:object:thewire' => "Wire posts",
diff --git a/mod/thewire/views/default/object/thewire.php b/mod/thewire/views/default/object/thewire.php
index d87d8f8e3..387021112 100644
--- a/mod/thewire/views/default/object/thewire.php
+++ b/mod/thewire/views/default/object/thewire.php
@@ -60,7 +60,9 @@ if (isset($vars['entity'])) {
echo elgg_echo("thewire:wired") . " " . sprintf(elgg_echo("thewire:strapline"),
elgg_view_friendly_time($vars['entity']->time_created)
);
- echo " via " . elgg_echo($vars['entity']->method) . ".";
+ echo ' ';
+ echo sprintf(elgg_echo('thewire:via_method'), elgg_echo($vars['entity']->method));
+ echo '.';
?>
</p>
</div>