diff options
author | Mario <mario@mariovavti.com> | 2022-01-19 09:21:55 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-01-19 09:21:55 +0000 |
commit | e93b26bf546d4e94ceefc071a0ac9bd1faadc91b (patch) | |
tree | d40f07175cf4a9c969f17a17d2b3cbbea6239174 /Zotlabs | |
parent | 20ee57801c7002a240e870d9636b740b346ec7cb (diff) | |
parent | 6a270d7f02bce43ef90d9cdb7ff61be69872a612 (diff) | |
download | volse-hubzilla-e93b26bf546d4e94ceefc071a0ac9bd1faadc91b.tar.gz volse-hubzilla-e93b26bf546d4e94ceefc071a0ac9bd1faadc91b.tar.bz2 volse-hubzilla-e93b26bf546d4e94ceefc071a0ac9bd1faadc91b.zip |
Merge branch 'dev' into 'dev'
Fix strings translation
See merge request hubzilla/core!1997
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Channel.php | 2 | ||||
-rw-r--r-- | Zotlabs/Module/Contactedit.php | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/Zotlabs/Module/Channel.php b/Zotlabs/Module/Channel.php index aebc70c15..1bf69dc4c 100644 --- a/Zotlabs/Module/Channel.php +++ b/Zotlabs/Module/Channel.php @@ -224,7 +224,7 @@ class Channel extends Controller { if (!$update) { - nav_set_selected('Channel'); + nav_set_selected(t('Channel')); // search terms header if ($search) { diff --git a/Zotlabs/Module/Contactedit.php b/Zotlabs/Module/Contactedit.php index b09b5b1ec..d306039d2 100644 --- a/Zotlabs/Module/Contactedit.php +++ b/Zotlabs/Module/Contactedit.php @@ -437,6 +437,13 @@ class Contactedit extends Controller { '$multiprofs' => $multiprofs, '$contact_id' => $contact['abook_id'], // '$name' => $contact['xchan_name'], + '$roles_label' => t('Roles'), + '$compare_label' => t('Compare permissions'), + '$permission_label' => t('Permission'), + '$pgroups_label' => t('Privacy groups'), + '$profiles_label' => t('Profiles'), + '$affinity_label' => t('Affinity'), + '$filter_label' => t('Content filter') ]); $arr = ['contact' => $contact, 'output' => $o]; |