aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r--Zotlabs/Module/Articles.php2
-rw-r--r--Zotlabs/Module/Cards.php2
-rw-r--r--Zotlabs/Module/Cdav.php4
-rw-r--r--Zotlabs/Module/Chat.php2
-rw-r--r--Zotlabs/Module/Connect.php2
-rw-r--r--Zotlabs/Module/Group.php2
-rw-r--r--Zotlabs/Module/Invite.php2
-rw-r--r--Zotlabs/Module/Lang.php2
-rw-r--r--Zotlabs/Module/Mood.php2
-rw-r--r--Zotlabs/Module/Notes.php2
-rw-r--r--Zotlabs/Module/Poke.php2
-rw-r--r--Zotlabs/Module/Sources.php2
-rw-r--r--Zotlabs/Module/Tokens.php2
-rw-r--r--Zotlabs/Module/Webpages.php2
-rw-r--r--Zotlabs/Module/Wiki.php2
15 files changed, 16 insertions, 16 deletions
diff --git a/Zotlabs/Module/Articles.php b/Zotlabs/Module/Articles.php
index 7af1ab6b8..1a9691b6a 100644
--- a/Zotlabs/Module/Articles.php
+++ b/Zotlabs/Module/Articles.php
@@ -40,7 +40,7 @@ class Articles extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Articles App (Not Installed):</b><br>';
+ $o = '<b>' . t('Articles App (Not Installed):') . '</b><br>';
$o .= t('Create interactive articles');
return $o;
}
diff --git a/Zotlabs/Module/Cards.php b/Zotlabs/Module/Cards.php
index 78cbad5fd..8aca60e57 100644
--- a/Zotlabs/Module/Cards.php
+++ b/Zotlabs/Module/Cards.php
@@ -43,7 +43,7 @@ class Cards extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Cards App (Not Installed):</b><br>';
+ $o = '<b>' . t('Cards App (Not Installed):') . '</b><br>';
$o .= t('Create personal planning cards');
return $o;
}
diff --git a/Zotlabs/Module/Cdav.php b/Zotlabs/Module/Cdav.php
index 7142615d5..860864e99 100644
--- a/Zotlabs/Module/Cdav.php
+++ b/Zotlabs/Module/Cdav.php
@@ -836,7 +836,7 @@ class Cdav extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>CalDAV App (Not Installed):</b><br>';
+ $o = '<b>' . t('CalDAV App (Not Installed):') . '</b><br>';
$o .= t('CalDAV capable calendar');
return $o;
}
@@ -845,7 +845,7 @@ class Cdav extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>CardDAV App (Not Installed):</b><br>';
+ $o = '<b>' . t('CardDAV App (Not Installed):') . '</b><br>';
$o .= t('CalDAV capable addressbook');
return $o;
}
diff --git a/Zotlabs/Module/Chat.php b/Zotlabs/Module/Chat.php
index 551dc5e2a..d007ec407 100644
--- a/Zotlabs/Module/Chat.php
+++ b/Zotlabs/Module/Chat.php
@@ -99,7 +99,7 @@ class Chat extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Chatrooms App (Not Installed):</b><br>';
+ $o = '<b>' . t('Chatrooms App (Not Installed):') . '</b><br>';
$o .= t('Access Controlled Chatrooms');
return $o;
}
diff --git a/Zotlabs/Module/Connect.php b/Zotlabs/Module/Connect.php
index 7194e7039..83f0f455d 100644
--- a/Zotlabs/Module/Connect.php
+++ b/Zotlabs/Module/Connect.php
@@ -101,7 +101,7 @@ class Connect extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Premium Channel App (Not Installed):</b><br>';
+ $o = '<b>' . t('Premium Channel App (Not Installed):') . '</b><br>';
$o .= t('Allows you to set restrictions and terms on those that connect with your channel');
return $o;
}
diff --git a/Zotlabs/Module/Group.php b/Zotlabs/Module/Group.php
index bfe051d59..c544f95a0 100644
--- a/Zotlabs/Module/Group.php
+++ b/Zotlabs/Module/Group.php
@@ -98,7 +98,7 @@ class Group extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Privacy Groups App (Not Installed):</b><br>';
+ $o = '<b>' . t('Privacy Groups App (Not Installed):') . '</b><br>';
$o .= t('Management of privacy groups');
return $o;
}
diff --git a/Zotlabs/Module/Invite.php b/Zotlabs/Module/Invite.php
index 234802746..8640c5b23 100644
--- a/Zotlabs/Module/Invite.php
+++ b/Zotlabs/Module/Invite.php
@@ -107,7 +107,7 @@ class Invite extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Invite App (Not Installed):</b><br>';
+ $o = '<b>' . t('Invite App (Not Installed):') . '</b><br>';
$o .= t('Send email invitations to join this network');
return $o;
}
diff --git a/Zotlabs/Module/Lang.php b/Zotlabs/Module/Lang.php
index 9858beecd..a163da102 100644
--- a/Zotlabs/Module/Lang.php
+++ b/Zotlabs/Module/Lang.php
@@ -14,7 +14,7 @@ class Lang extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Language App (Not Installed):</b><br>';
+ $o = '<b>' . t('Language App (Not Installed):') . '</b><br>';
$o .= t('Change UI language');
return $o;
}
diff --git a/Zotlabs/Module/Mood.php b/Zotlabs/Module/Mood.php
index cceef5ffa..4ffb35ca8 100644
--- a/Zotlabs/Module/Mood.php
+++ b/Zotlabs/Module/Mood.php
@@ -129,7 +129,7 @@ class Mood extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Mood App (Not Installed):</b><br>';
+ $o = '<b>' . t('Mood App (Not Installed):') . '</b><br>';
$o .= t('Set your current mood and tell your friends');
return $o;
}
diff --git a/Zotlabs/Module/Notes.php b/Zotlabs/Module/Notes.php
index cd383a6c2..2916925e2 100644
--- a/Zotlabs/Module/Notes.php
+++ b/Zotlabs/Module/Notes.php
@@ -52,7 +52,7 @@ class Notes extends Controller {
//Do not display any associated widgets at this point
App::$pdl = EMPTY_STR;
- $o = '<b>Notes App (Not Installed):</b><br>';
+ $o = '<b>' . t('Notes App (Not Installed):') . '</b><br>';
$o .= t('A simple notes app with a widget (note: notes are not encrypted)');
return $o;
}
diff --git a/Zotlabs/Module/Poke.php b/Zotlabs/Module/Poke.php
index 46dcf6dd3..4074663ae 100644
--- a/Zotlabs/Module/Poke.php
+++ b/Zotlabs/Module/Poke.php
@@ -162,7 +162,7 @@ class Poke extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Poke App (Not Installed):</b><br>';
+ $o = '<b>' . t('Poke App (Not Installed):') . '</b><br>';
$o .= t('Poke somebody in your addressbook');
return $o;
}
diff --git a/Zotlabs/Module/Sources.php b/Zotlabs/Module/Sources.php
index 5d05244a7..f761d5666 100644
--- a/Zotlabs/Module/Sources.php
+++ b/Zotlabs/Module/Sources.php
@@ -85,7 +85,7 @@ class Sources extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Sources App (Not Installed):</b><br>';
+ $o = '<b>' . t('Sources App (Not Installed):') . '</b><br>';
$o .= t('Automatically import channel content from other channels or feeds');
return $o;
}
diff --git a/Zotlabs/Module/Tokens.php b/Zotlabs/Module/Tokens.php
index ae03a499a..d2198331a 100644
--- a/Zotlabs/Module/Tokens.php
+++ b/Zotlabs/Module/Tokens.php
@@ -96,7 +96,7 @@ class Tokens extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Guest Access App (Not Installed):</b><br>';
+ $o = '<b>' . t('Guest Access App (Not Installed):') . '</b><br>';
$o .= t('Create access tokens so that non-members can access private content');
return $o;
}
diff --git a/Zotlabs/Module/Webpages.php b/Zotlabs/Module/Webpages.php
index c6599db3b..79fd51d33 100644
--- a/Zotlabs/Module/Webpages.php
+++ b/Zotlabs/Module/Webpages.php
@@ -45,7 +45,7 @@ class Webpages extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Webpages App (Not Installed):</b><br>';
+ $o = '<b>' . t('Webpages App (Not Installed):') . '</b><br>';
$o .= t('Provide managed web pages on your channel');
return $o;
}
diff --git a/Zotlabs/Module/Wiki.php b/Zotlabs/Module/Wiki.php
index 0fb5a4605..80824b7d5 100644
--- a/Zotlabs/Module/Wiki.php
+++ b/Zotlabs/Module/Wiki.php
@@ -49,7 +49,7 @@ class Wiki extends Controller {
//Do not display any associated widgets at this point
App::$pdl = '';
- $o = '<b>Wiki App (Not Installed):</b><br>';
+ $o = '<b>' . t('Wiki App (Not Installed):') . '</b><br>';
$o .= t('Provide a wiki for your channel');
return $o;
}