Merge branch 'master' of https://github.com/redmatrix/redmatrix
Conflicts: mod/mitem.php view/de/messages.po view/de/strings.php
This commit is contained in:
commit
0a644a2f41
@ -2430,7 +2430,7 @@ function diaspora_send_status($item,$owner,$contact,$public_batch = false) {
|
|||||||
if($item['item_flags'] & ITEM_CONSENSUS) {
|
if($item['item_flags'] & ITEM_CONSENSUS) {
|
||||||
$poll = replace_macros(get_markup_template('diaspora_consensus.tpl'), array(
|
$poll = replace_macros(get_markup_template('diaspora_consensus.tpl'), array(
|
||||||
'$guid_q' => random_string(),
|
'$guid_q' => random_string(),
|
||||||
'$question' => '',
|
'$question' => t('Please choose'),
|
||||||
'$guid_y' => random_string(),
|
'$guid_y' => random_string(),
|
||||||
'$agree' => t('Agree'),
|
'$agree' => t('Agree'),
|
||||||
'$guid_n' => random_string(),
|
'$guid_n' => random_string(),
|
||||||
|
@ -29,17 +29,33 @@ function menu_render($menu, $class='', $edit = false, $var = '') {
|
|||||||
if(! $menu)
|
if(! $menu)
|
||||||
return '';
|
return '';
|
||||||
|
|
||||||
|
$channel_id = ((is_array(get_app()->profile)) ? get_app()->profile['profile_uid'] : 0);
|
||||||
|
$menu_list = menu_list($channel_id);
|
||||||
|
|
||||||
|
foreach($menu_list as $menus) {
|
||||||
|
if($menus['menu_name'] != $menu['menu']['menu_name'])
|
||||||
|
$menu_names[] = $menus['menu_name'];
|
||||||
|
}
|
||||||
|
|
||||||
for($x = 0; $x < count($menu['items']); $x ++) {
|
for($x = 0; $x < count($menu['items']); $x ++) {
|
||||||
|
if(in_array($menu['items'][$x]['mitem_link'], $menu_names)) {
|
||||||
|
$m = menu_fetch($menu['items'][$x]['mitem_link'], $channel_id, get_observer_hash());
|
||||||
|
$submenu = menu_render($m, 'dropdown-menu', $edit = false, $var = array('wrap' => 'none'));
|
||||||
|
$menu['items'][$x]['submenu'] = $submenu;
|
||||||
|
}
|
||||||
|
|
||||||
if($menu['items'][$x]['mitem_flags'] & MENU_ITEM_ZID)
|
if($menu['items'][$x]['mitem_flags'] & MENU_ITEM_ZID)
|
||||||
$menu['items'][$x]['mitem_link'] = zid($menu['items'][$x]['mitem_link']);
|
$menu['items'][$x]['mitem_link'] = zid($menu['items'][$x]['mitem_link']);
|
||||||
|
|
||||||
if($menu['items'][$x]['mitem_flags'] & MENU_ITEM_NEWWIN)
|
if($menu['items'][$x]['mitem_flags'] & MENU_ITEM_NEWWIN)
|
||||||
$menu['items'][$x]['newwin'] = '1';
|
$menu['items'][$x]['newwin'] = '1';
|
||||||
|
|
||||||
$menu['items'][$x]['mitem_desc'] = bbcode($menu['items'][$x]['mitem_desc']);
|
$menu['items'][$x]['mitem_desc'] = bbcode($menu['items'][$x]['mitem_desc']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$wrap = (($var['wrap'] === 'none') ? false : true);
|
$wrap = (($var['wrap'] === 'none') ? false : true);
|
||||||
|
|
||||||
return replace_macros(get_markup_template('usermenu.tpl'),array(
|
$ret = replace_macros(get_markup_template('usermenu.tpl'),array(
|
||||||
'$menu' => $menu['menu'],
|
'$menu' => $menu['menu'],
|
||||||
'$class' => $class,
|
'$class' => $class,
|
||||||
'$edit' => (($edit) ? t("Edit") : ''),
|
'$edit' => (($edit) ? t("Edit") : ''),
|
||||||
@ -47,6 +63,8 @@ function menu_render($menu, $class='', $edit = false, $var = '') {
|
|||||||
'$items' => $menu['items'],
|
'$items' => $menu['items'],
|
||||||
'$wrap' => $wrap
|
'$wrap' => $wrap
|
||||||
));
|
));
|
||||||
|
|
||||||
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -124,6 +124,13 @@ function mitem_content(&$a) {
|
|||||||
$m = menu_fetch($a->data['menu']['menu_name'],$uid,$ob_hash);
|
$m = menu_fetch($a->data['menu']['menu_name'],$uid,$ob_hash);
|
||||||
$a->data['menu_item'] = $m;
|
$a->data['menu_item'] = $m;
|
||||||
|
|
||||||
|
$menu_list = menu_list($uid);
|
||||||
|
|
||||||
|
foreach($menu_list as $menus) {
|
||||||
|
if($menus['menu_name'] != $m['menu']['menu_name'])
|
||||||
|
$menu_names[] = $menus['menu_name'];
|
||||||
|
}
|
||||||
|
|
||||||
$perm_defaults = array(
|
$perm_defaults = array(
|
||||||
'allow_cid' => $channel['channel_allow_cid'],
|
'allow_cid' => $channel['channel_allow_cid'],
|
||||||
'allow_gid' => $channel['channel_allow_gid'],
|
'allow_gid' => $channel['channel_allow_gid'],
|
||||||
@ -152,14 +159,15 @@ function mitem_content(&$a) {
|
|||||||
'$permdesc' => t("\x28click to open/close\x29"),
|
'$permdesc' => t("\x28click to open/close\x29"),
|
||||||
'$aclselect' => populate_acl($perm_defaults,false),
|
'$aclselect' => populate_acl($perm_defaults,false),
|
||||||
'$mitem_desc' => array('mitem_desc', t('Link Name'), '', 'Visible name of the link','*'),
|
'$mitem_desc' => array('mitem_desc', t('Link Name'), '', 'Visible name of the link','*'),
|
||||||
'$mitem_link' => array('mitem_link', t('Link Target'), '', 'URL of the link', '*'),
|
'$mitem_link' => array('mitem_link', t('Link or Submenu Target'), '', 'Enter URL of the link or select a menu name to create a submenu', '*', 'list="menu-names"'),
|
||||||
'$usezid' => array('usezid', t('Use Hubzilla magic-auth if available'), true, ''),
|
'$usezid' => array('usezid', t('Use magic-auth if available'), true, ''),
|
||||||
'$newwin' => array('newwin', t('Open link in new window'), false,''),
|
'$newwin' => array('newwin', t('Open link in new window'), false,''),
|
||||||
'$mitem_order' => array('mitem_order', t('Order in list'),'0',t('Higher numbers will sink to bottom of listing')),
|
'$mitem_order' => array('mitem_order', t('Order in list'),'0',t('Higher numbers will sink to bottom of listing')),
|
||||||
'$submit' => t('Submit and finish'),
|
'$submit' => t('Submit and finish'),
|
||||||
'$submit_more' => t('Submit and continue'),
|
'$submit_more' => t('Submit and continue'),
|
||||||
'$display' => $display,
|
'$display' => $display,
|
||||||
'$lockstate' => $lockstate
|
'$lockstate' => $lockstate,
|
||||||
|
'$menu_names' => $menu_names
|
||||||
));
|
));
|
||||||
|
|
||||||
$o .= replace_macros(get_markup_template('mitemlist.tpl'),array(
|
$o .= replace_macros(get_markup_template('mitemlist.tpl'),array(
|
||||||
@ -222,12 +230,18 @@ function mitem_content(&$a) {
|
|||||||
'$aclselect' => populate_acl($mitem,false),
|
'$aclselect' => populate_acl($mitem,false),
|
||||||
'$mitem_id' => intval(argv(2)),
|
'$mitem_id' => intval(argv(2)),
|
||||||
'$mitem_desc' => array('mitem_desc', t('Link text'), $mitem['mitem_desc'], '','*'),
|
'$mitem_desc' => array('mitem_desc', t('Link text'), $mitem['mitem_desc'], '','*'),
|
||||||
|
<<<<<<< HEAD
|
||||||
'$mitem_link' => array('mitem_link', t('URL of link'), $mitem['mitem_link'], '', '*'),
|
'$mitem_link' => array('mitem_link', t('URL of link'), $mitem['mitem_link'], '', '*'),
|
||||||
'$usezid' => array('usezid', t('Use Hubzilla magic-auth if available'), (($mitem['mitem_flags'] & MENU_ITEM_ZID) ? 1 : 0), ''),
|
'$usezid' => array('usezid', t('Use Hubzilla magic-auth if available'), (($mitem['mitem_flags'] & MENU_ITEM_ZID) ? 1 : 0), ''),
|
||||||
|
=======
|
||||||
|
'$mitem_link' => array('mitem_link', t('Link or Submenu Target'), $mitem['mitem_link'], 'Enter URL of the link or select a menu name to create a submenu', '*', 'list="menu-names"'),
|
||||||
|
'$usezid' => array('usezid', t('Use RedMatrix magic-auth if available'), (($mitem['mitem_flags'] & MENU_ITEM_ZID) ? 1 : 0), ''),
|
||||||
|
>>>>>>> 2cb8b19972eb6a023eca1297f281ef9f68934c64
|
||||||
'$newwin' => array('newwin', t('Open link in new window'), (($mitem['mitem_flags'] & MENU_ITEM_NEWWIN) ? 1 : 0),''),
|
'$newwin' => array('newwin', t('Open link in new window'), (($mitem['mitem_flags'] & MENU_ITEM_NEWWIN) ? 1 : 0),''),
|
||||||
'$mitem_order' => array('mitem_order', t('Order in list'),$mitem['mitem_order'],t('Higher numbers will sink to bottom of listing')),
|
'$mitem_order' => array('mitem_order', t('Order in list'),$mitem['mitem_order'],t('Higher numbers will sink to bottom of listing')),
|
||||||
'$submit' => t('Submit'),
|
'$submit' => t('Submit'),
|
||||||
'$lockstate' => $lockstate
|
'$lockstate' => $lockstate,
|
||||||
|
'$menu_names' => $menu_names
|
||||||
));
|
));
|
||||||
|
|
||||||
return $o;
|
return $o;
|
||||||
|
106
util/messages.po
106
util/messages.po
@ -6,9 +6,9 @@
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: 2015-05-01.1019\n"
|
"Project-Id-Version: 2015-05-08.1026\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2015-05-01 00:03-0700\n"
|
"POT-Creation-Date: 2015-05-08 00:03-0700\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -2336,49 +2336,6 @@ msgstr ""
|
|||||||
msgid "%1$s has an updated %2$s, changing %3$s."
|
msgid "%1$s has an updated %2$s, changing %3$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/bbcode.php:122 ../../include/bbcode.php:743
|
|
||||||
#: ../../include/bbcode.php:746 ../../include/bbcode.php:751
|
|
||||||
#: ../../include/bbcode.php:754 ../../include/bbcode.php:757
|
|
||||||
#: ../../include/bbcode.php:760 ../../include/bbcode.php:765
|
|
||||||
#: ../../include/bbcode.php:768 ../../include/bbcode.php:773
|
|
||||||
#: ../../include/bbcode.php:776 ../../include/bbcode.php:779
|
|
||||||
#: ../../include/bbcode.php:782
|
|
||||||
msgid "Image/photo"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/bbcode.php:161 ../../include/bbcode.php:793
|
|
||||||
msgid "Encrypted content"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/bbcode.php:177
|
|
||||||
msgid "Install design element: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/bbcode.php:190
|
|
||||||
msgid "QR code"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/bbcode.php:241
|
|
||||||
#, php-format
|
|
||||||
msgid "%1$s wrote the following %2$s %3$s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/bbcode.php:243
|
|
||||||
msgid "post"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/bbcode.php:493
|
|
||||||
msgid "Different viewers will see this text differently"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/bbcode.php:704
|
|
||||||
msgid "$1 spoiler"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/bbcode.php:731
|
|
||||||
msgid "$1 wrote:"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: ../../include/items.php:399 ../../mod/like.php:270
|
#: ../../include/items.php:399 ../../mod/like.php:270
|
||||||
#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23
|
#: ../../mod/subthread.php:49 ../../mod/group.php:68 ../../mod/profperm.php:23
|
||||||
#: ../../mod/bulksetclose.php:11 ../../index.php:392
|
#: ../../mod/bulksetclose.php:11 ../../index.php:392
|
||||||
@ -3104,6 +3061,49 @@ msgid_plural "Abstains"
|
|||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
|
#: ../../include/bbcode.php:122 ../../include/bbcode.php:743
|
||||||
|
#: ../../include/bbcode.php:746 ../../include/bbcode.php:751
|
||||||
|
#: ../../include/bbcode.php:754 ../../include/bbcode.php:757
|
||||||
|
#: ../../include/bbcode.php:760 ../../include/bbcode.php:765
|
||||||
|
#: ../../include/bbcode.php:768 ../../include/bbcode.php:773
|
||||||
|
#: ../../include/bbcode.php:776 ../../include/bbcode.php:779
|
||||||
|
#: ../../include/bbcode.php:782
|
||||||
|
msgid "Image/photo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/bbcode.php:161 ../../include/bbcode.php:793
|
||||||
|
msgid "Encrypted content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/bbcode.php:177
|
||||||
|
msgid "Install design element: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/bbcode.php:190
|
||||||
|
msgid "QR code"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/bbcode.php:241
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s wrote the following %2$s %3$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/bbcode.php:243
|
||||||
|
msgid "post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/bbcode.php:493
|
||||||
|
msgid "Different viewers will see this text differently"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/bbcode.php:704
|
||||||
|
msgid "$1 spoiler"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/bbcode.php:731
|
||||||
|
msgid "$1 wrote:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/photos.php:94
|
#: ../../include/photos.php:94
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Image exceeds website size limit of %lu bytes"
|
msgid "Image exceeds website size limit of %lu bytes"
|
||||||
@ -3847,6 +3847,22 @@ msgstr ""
|
|||||||
msgid "Room is full"
|
msgid "Room is full"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/diaspora.php:2433
|
||||||
|
msgid "Please choose"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/diaspora.php:2435
|
||||||
|
msgid "Agree"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/diaspora.php:2437
|
||||||
|
msgid "Disagree"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../../include/diaspora.php:2439
|
||||||
|
msgid "Abstain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: ../../mod/achievements.php:34
|
#: ../../mod/achievements.php:34
|
||||||
msgid "Some blurb about what to do when you're new here"
|
msgid "Some blurb about what to do when you're new here"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1 +1 @@
|
|||||||
2015-05-05.1023
|
2015-05-10.1028
|
||||||
|
5
view/css/bootstrap-red.css
vendored
5
view/css/bootstrap-red.css
vendored
@ -56,6 +56,11 @@ nav .navbar-toggle {
|
|||||||
|
|
||||||
/* nav overrides end */
|
/* nav overrides end */
|
||||||
|
|
||||||
|
|
||||||
|
aside .nav-pills > li > a {
|
||||||
|
padding: 6px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.dropdown-menu img {
|
.dropdown-menu img {
|
||||||
float: left;
|
float: left;
|
||||||
width: 32px;
|
width: 32px;
|
||||||
|
@ -7,10 +7,6 @@
|
|||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.widget .nav-pills > li > a {
|
|
||||||
padding: 6px 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.widget-input {
|
.widget-input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-top-right-radius: 0px;
|
border-top-right-radius: 0px;
|
||||||
|
@ -30,7 +30,7 @@ $default_timezone = '{{$timezone}}';
|
|||||||
// What is your site name?
|
// What is your site name?
|
||||||
|
|
||||||
$a->config['system']['baseurl'] = '{{$siteurl}}';
|
$a->config['system']['baseurl'] = '{{$siteurl}}';
|
||||||
$a->config['system']['sitename'] = "Hubzilla";
|
$a->config['system']['sitename'] = "Red Matrix";
|
||||||
$a->config['system']['location_hash'] = '{{$site_id}}';
|
$a->config['system']['location_hash'] = '{{$site_id}}';
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Hubzilla Project
|
# Red Matrix Project
|
||||||
# Copyright (C) 2012-2014 the Hubzilla Project
|
# Copyright (C) 2012-2014 the Red Matrix Project
|
||||||
# This file is distributed under the same license as the Red package.
|
# This file is distributed under the same license as the Red package.
|
||||||
#
|
#
|
||||||
# Translators:
|
# Translators:
|
||||||
@ -24,7 +24,7 @@
|
|||||||
# sasiflo <transiflex@sasiflo.de>, 2014
|
# sasiflo <transiflex@sasiflo.de>, 2014
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Hubzilla\n"
|
"Project-Id-Version: Red Matrix\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2015-02-20 00:04-0800\n"
|
"POT-Creation-Date: 2015-02-20 00:04-0800\n"
|
||||||
"PO-Revision-Date: 2015-02-27 09:55+0000\n"
|
"PO-Revision-Date: 2015-02-27 09:55+0000\n"
|
||||||
@ -394,12 +394,12 @@ msgid "Public Hubs"
|
|||||||
msgstr "Öffentliche Hubs"
|
msgstr "Öffentliche Hubs"
|
||||||
|
|
||||||
#: ../../include/enotify.php:41
|
#: ../../include/enotify.php:41
|
||||||
msgid "Hubzilla Notification"
|
msgid "Red Matrix Notification"
|
||||||
msgstr "Hubzilla Benachrichtigung"
|
msgstr "Red Matrix Benachrichtigung"
|
||||||
|
|
||||||
#: ../../include/enotify.php:42
|
#: ../../include/enotify.php:42
|
||||||
msgid "hubzilla"
|
msgid "redmatrix"
|
||||||
msgstr "hubzilla"
|
msgstr "redmatrix"
|
||||||
|
|
||||||
#: ../../include/enotify.php:44
|
#: ../../include/enotify.php:44
|
||||||
msgid "Thank You,"
|
msgid "Thank You,"
|
||||||
@ -2069,8 +2069,8 @@ msgid "l F d, Y \\@ g:i A"
|
|||||||
msgstr "l, d. F Y, H:i"
|
msgstr "l, d. F Y, H:i"
|
||||||
|
|
||||||
#: ../../include/bb2diaspora.php:430
|
#: ../../include/bb2diaspora.php:430
|
||||||
msgid "Hubzilla event notification:"
|
msgid "Redmatrix event notification:"
|
||||||
msgstr "Hubzilla Termin-Benachrichtigung:"
|
msgstr "RedMatrix Termin-Benachrichtigung:"
|
||||||
|
|
||||||
#: ../../include/bb2diaspora.php:434 ../../include/event.php:20
|
#: ../../include/bb2diaspora.php:434 ../../include/event.php:20
|
||||||
msgid "Starts:"
|
msgid "Starts:"
|
||||||
@ -2656,7 +2656,7 @@ msgstr "Nur für Dich sichtbar."
|
|||||||
|
|
||||||
#: ../../include/items.php:1185
|
#: ../../include/items.php:1185
|
||||||
msgid "Visible to anybody in this network."
|
msgid "Visible to anybody in this network."
|
||||||
msgstr "Für jedes Mitglied der Hubzilla sichtbar."
|
msgstr "Für jedes Mitglied der RedMatrix sichtbar."
|
||||||
|
|
||||||
#: ../../include/items.php:1187
|
#: ../../include/items.php:1187
|
||||||
msgid "Visible to anybody authenticated."
|
msgid "Visible to anybody authenticated."
|
||||||
@ -4313,8 +4313,8 @@ msgid "Currently pending"
|
|||||||
msgstr "Derzeit anstehend"
|
msgstr "Derzeit anstehend"
|
||||||
|
|
||||||
#: ../../mod/home.php:48
|
#: ../../mod/home.php:48
|
||||||
msgid "Hubzilla - "The Network""
|
msgid "Red Matrix - "The Network""
|
||||||
msgstr "Hubzilla – "Das Netzwerk""
|
msgstr "RedMatrix – "Das Netzwerk""
|
||||||
|
|
||||||
#: ../../mod/home.php:101
|
#: ../../mod/home.php:101
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -4386,8 +4386,8 @@ msgid "Fetching URL returns error: %1$s"
|
|||||||
msgstr "Abrufen der URL gab einen Fehler zurück: %1$s"
|
msgstr "Abrufen der URL gab einen Fehler zurück: %1$s"
|
||||||
|
|
||||||
#: ../../mod/dav.php:121
|
#: ../../mod/dav.php:121
|
||||||
msgid "Hubzilla channel"
|
msgid "RedMatrix channel"
|
||||||
msgstr "Hubzilla-Kanal"
|
msgstr "RedMatrix-Kanal"
|
||||||
|
|
||||||
#: ../../mod/profile_photo.php:108
|
#: ../../mod/profile_photo.php:108
|
||||||
msgid "Image uploaded but image cropping failed."
|
msgid "Image uploaded but image cropping failed."
|
||||||
@ -4611,7 +4611,7 @@ msgstr "Öffentliche Server"
|
|||||||
|
|
||||||
#: ../../mod/pubsites.php:19
|
#: ../../mod/pubsites.php:19
|
||||||
msgid ""
|
msgid ""
|
||||||
"The listed sites allow public registration into the Hubzilla. All sites in"
|
"The listed sites allow public registration into the Red Matrix. All sites in"
|
||||||
" the matrix are interlinked so membership on any of them conveys membership "
|
" the matrix are interlinked so membership on any of them conveys membership "
|
||||||
"in the matrix as a whole. Some sites may require subscription or provide "
|
"in the matrix as a whole. Some sites may require subscription or provide "
|
||||||
"tiered service plans. The provider links <strong>may</strong> provide "
|
"tiered service plans. The provider links <strong>may</strong> provide "
|
||||||
@ -5225,8 +5225,8 @@ msgid "Remove this channel"
|
|||||||
msgstr "Diesen Kanal löschen"
|
msgstr "Diesen Kanal löschen"
|
||||||
|
|
||||||
#: ../../mod/cloud.php:120
|
#: ../../mod/cloud.php:120
|
||||||
msgid "Hubzilla - Guests: Username: {your email address}, Password: +++"
|
msgid "RedMatrix - Guests: Username: {your email address}, Password: +++"
|
||||||
msgstr "Hubzilla – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++"
|
msgstr "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++"
|
||||||
|
|
||||||
#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94
|
#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94
|
||||||
msgid "Tag removed"
|
msgid "Tag removed"
|
||||||
@ -5311,9 +5311,9 @@ msgstr "Red"
|
|||||||
|
|
||||||
#: ../../mod/siteinfo.php:137
|
#: ../../mod/siteinfo.php:137
|
||||||
msgid ""
|
msgid ""
|
||||||
"This is a hub of the Hubzilla - a global cooperative network of "
|
"This is a hub of the Red Matrix - a global cooperative network of "
|
||||||
"decentralized privacy enhanced websites."
|
"decentralized privacy enhanced websites."
|
||||||
msgstr "Dieser Hub ist Teil der Hubzilla – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."
|
msgstr "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."
|
||||||
|
|
||||||
#: ../../mod/siteinfo.php:139
|
#: ../../mod/siteinfo.php:139
|
||||||
msgid "Tag: "
|
msgid "Tag: "
|
||||||
@ -5329,9 +5329,9 @@ msgstr "Erreichbar unter der Web-Adresse"
|
|||||||
|
|
||||||
#: ../../mod/siteinfo.php:145
|
#: ../../mod/siteinfo.php:145
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please visit <a href=\"https://redmatrix.me\">Redmatrix.me</a> to learn more"
|
"Please visit <a href=\"https://redmatrix.me\">RedMatrix.me</a> to learn more"
|
||||||
" about the Hubzilla."
|
" about the Red Matrix."
|
||||||
msgstr "Bitte besuchen Sie <a href=\"https://redmatrix.me\">Redmatrix.me</a>, um mehr über Hubzilla zu erfahren."
|
msgstr "Bitte besuchen Sie <a href=\"https://redmatrix.me\">RedMatrix.me</a>, um mehr über RedMatrix zu erfahren."
|
||||||
|
|
||||||
#: ../../mod/siteinfo.php:146
|
#: ../../mod/siteinfo.php:146
|
||||||
msgid "Bug reports and issues: please visit"
|
msgid "Bug reports and issues: please visit"
|
||||||
@ -5339,9 +5339,9 @@ msgstr "Probleme oder Fehler gefunden? Bitte besuche"
|
|||||||
|
|
||||||
#: ../../mod/siteinfo.php:149
|
#: ../../mod/siteinfo.php:149
|
||||||
msgid ""
|
msgid ""
|
||||||
"Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot "
|
"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot "
|
||||||
"com"
|
"com"
|
||||||
msgstr "Vorschläge, Lob, usw.: E-Mail an 'hubzilla' at librelist - dot - com"
|
msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"
|
||||||
|
|
||||||
#: ../../mod/siteinfo.php:151
|
#: ../../mod/siteinfo.php:151
|
||||||
msgid "Site Administrators"
|
msgid "Site Administrators"
|
||||||
@ -5356,8 +5356,8 @@ msgid "Not Found"
|
|||||||
msgstr "Nicht gefunden"
|
msgstr "Nicht gefunden"
|
||||||
|
|
||||||
#: ../../mod/setup.php:166
|
#: ../../mod/setup.php:166
|
||||||
msgid "Hubzilla Server - Setup"
|
msgid "Red Matrix Server - Setup"
|
||||||
msgstr "Hubzilla Server - Installation"
|
msgstr "Red Matrix Server - Installation"
|
||||||
|
|
||||||
#: ../../mod/setup.php:172
|
#: ../../mod/setup.php:172
|
||||||
msgid "Could not connect to database."
|
msgid "Could not connect to database."
|
||||||
@ -5401,7 +5401,7 @@ msgstr "Datenbank Verbindung"
|
|||||||
|
|
||||||
#: ../../mod/setup.php:290
|
#: ../../mod/setup.php:290
|
||||||
msgid ""
|
msgid ""
|
||||||
"In order to install Hubzilla we need to know how to connect to your "
|
"In order to install Red Matrix we need to know how to connect to your "
|
||||||
"database."
|
"database."
|
||||||
msgstr "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."
|
msgstr "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."
|
||||||
|
|
||||||
@ -6341,20 +6341,20 @@ msgid "Your message:"
|
|||||||
msgstr "Deine Nachricht:"
|
msgstr "Deine Nachricht:"
|
||||||
|
|
||||||
#: ../../mod/invite.php:132
|
#: ../../mod/invite.php:132
|
||||||
msgid "Please join my community on Hubzilla."
|
msgid "Please join my community on RedMatrix."
|
||||||
msgstr "Schließe Dich uns in der Hubzilla an!"
|
msgstr "Schließe Dich uns in der RedMatrix an!"
|
||||||
|
|
||||||
#: ../../mod/invite.php:134
|
#: ../../mod/invite.php:134
|
||||||
msgid "You will need to supply this invitation code: "
|
msgid "You will need to supply this invitation code: "
|
||||||
msgstr "Gib folgenden Einladungs-Code ein:"
|
msgstr "Gib folgenden Einladungs-Code ein:"
|
||||||
|
|
||||||
#: ../../mod/invite.php:135
|
#: ../../mod/invite.php:135
|
||||||
msgid "1. Register at any Hubzilla location (they are all inter-connected)"
|
msgid "1. Register at any RedMatrix location (they are all inter-connected)"
|
||||||
msgstr "1. Registriere Dich auf irgendeinem Hubzilla-Server (sie sind alle miteinander verbunden)"
|
msgstr "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)"
|
||||||
|
|
||||||
#: ../../mod/invite.php:137
|
#: ../../mod/invite.php:137
|
||||||
msgid "2. Enter my Hubzilla network address into the site searchbar."
|
msgid "2. Enter my RedMatrix network address into the site searchbar."
|
||||||
msgstr "2. Gib meine Hubzilla-Adresse im Suchfeld ein."
|
msgstr "2. Gib meine RedMatrix-Adresse im Suchfeld ein."
|
||||||
|
|
||||||
#: ../../mod/invite.php:138
|
#: ../../mod/invite.php:138
|
||||||
msgid "or visit "
|
msgid "or visit "
|
||||||
@ -7360,7 +7360,7 @@ msgstr "Den „Entdecken“-Reiter ausblenden"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"Remove the tab in the network view with public content pulled from sources "
|
"Remove the tab in the network view with public content pulled from sources "
|
||||||
"chosen for this site."
|
"chosen for this site."
|
||||||
msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen Hubzilla-Hubs geholt wurden."
|
msgstr "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden."
|
||||||
|
|
||||||
#: ../../mod/admin.php:445
|
#: ../../mod/admin.php:445
|
||||||
msgid "No login on Homepage"
|
msgid "No login on Homepage"
|
||||||
@ -7785,7 +7785,7 @@ msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk
|
|||||||
msgid ""
|
msgid ""
|
||||||
"By default only the instances of the channels located on this hub will be "
|
"By default only the instances of the channels located on this hub will be "
|
||||||
"removed from the network"
|
"removed from the network"
|
||||||
msgstr "Standardmäßig werden nur die Kanalklone auf diesem Hubzilla-Hub aus dem Netzwerk entfernt"
|
msgstr "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt"
|
||||||
|
|
||||||
#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25
|
#: ../../mod/update_channel.php:43 ../../mod/update_display.php:25
|
||||||
#: ../../mod/update_network.php:23 ../../mod/update_search.php:46
|
#: ../../mod/update_network.php:23 ../../mod/update_search.php:46
|
||||||
@ -7898,8 +7898,8 @@ msgid "URL of link"
|
|||||||
msgstr "URL des Links"
|
msgstr "URL des Links"
|
||||||
|
|
||||||
#: ../../mod/mitem.php:165 ../../mod/mitem.php:209
|
#: ../../mod/mitem.php:165 ../../mod/mitem.php:209
|
||||||
msgid "Use Hubzilla magic-auth if available"
|
msgid "Use RedMatrix magic-auth if available"
|
||||||
msgstr "Verwende die automatische Hubzilla-Authentifizierung (magic-auth), wenn verfügbar"
|
msgstr "Verwende die automatische RedMatrix-Authentifizierung (magic-auth), wenn verfügbar"
|
||||||
|
|
||||||
#: ../../mod/mitem.php:166 ../../mod/mitem.php:210
|
#: ../../mod/mitem.php:166 ../../mod/mitem.php:210
|
||||||
msgid "Open link in new window"
|
msgid "Open link in new window"
|
||||||
@ -7989,9 +7989,9 @@ msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden."
|
|||||||
|
|
||||||
#: ../../mod/like.php:21
|
#: ../../mod/like.php:21
|
||||||
msgid ""
|
msgid ""
|
||||||
"Please <a href=\"rmagic\">login with your Hubzilla ID</a> or <a "
|
"Please <a href=\"rmagic\">login with your RedMatrix ID</a> or <a "
|
||||||
"href=\"register\">register as a new Redmatrix.member</a> to continue."
|
"href=\"register\">register as a new RedMatrix member</a> to continue."
|
||||||
msgstr "Bitte <a href=\"rmagic\">melde Dich mit Deiner Hubzilla-ID an</a> oder <a href=\"register\">registriere Dich als neues Mitglied der Hubzilla</a>, um fortzufahren."
|
msgstr "Bitte <a href=\"rmagic\">melde Dich mit Deiner RedMatrix-ID an</a> oder <a href=\"register\">registriere Dich als neues Mitglied der RedMatrix</a>, um fortzufahren."
|
||||||
|
|
||||||
#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166
|
#: ../../mod/like.php:101 ../../mod/like.php:128 ../../mod/like.php:166
|
||||||
msgid "Invalid request."
|
msgid "Invalid request."
|
||||||
@ -8606,8 +8606,8 @@ msgid "Right offset of the aside element"
|
|||||||
msgstr "Rechter Rand des Aside-Elements"
|
msgstr "Rechter Rand des Aside-Elements"
|
||||||
|
|
||||||
#: ../../view/theme/redbasic/php/config.php:84
|
#: ../../view/theme/redbasic/php/config.php:84
|
||||||
msgid "Light (Hubzilla default)"
|
msgid "Light (Red Matrix default)"
|
||||||
msgstr "Hell (Hubzilla-Voreinstellung)"
|
msgstr "Hell (RedMatrix-Voreinstellung)"
|
||||||
|
|
||||||
#: ../../view/theme/redbasic/php/config.php:104
|
#: ../../view/theme/redbasic/php/config.php:104
|
||||||
msgid "Narrow navbar"
|
msgid "Narrow navbar"
|
||||||
@ -8741,7 +8741,7 @@ msgstr "Aktualisierungsfehler auf %s"
|
|||||||
|
|
||||||
#: ../../boot.php:1527
|
#: ../../boot.php:1527
|
||||||
msgid ""
|
msgid ""
|
||||||
"Create an account to access services and applications within the Hubzilla"
|
"Create an account to access services and applications within the Red Matrix"
|
||||||
msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."
|
msgstr "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können."
|
||||||
|
|
||||||
#: ../../boot.php:1555
|
#: ../../boot.php:1555
|
||||||
|
@ -76,8 +76,8 @@ $a->strings["photo/image"] = "Foto/Bild";
|
|||||||
$a->strings["Rate Me"] = "Bewerte mich";
|
$a->strings["Rate Me"] = "Bewerte mich";
|
||||||
$a->strings["View Ratings"] = "Bewertungen ansehen";
|
$a->strings["View Ratings"] = "Bewertungen ansehen";
|
||||||
$a->strings["Public Hubs"] = "Öffentliche Hubs";
|
$a->strings["Public Hubs"] = "Öffentliche Hubs";
|
||||||
$a->strings["Hubzilla Notification"] = "Hubzilla Benachrichtigung";
|
$a->strings["Red Matrix Notification"] = "Red Matrix Benachrichtigung";
|
||||||
$a->strings["hubzilla"] = "hubzilla";
|
$a->strings["redmatrix"] = "redmatrix";
|
||||||
$a->strings["Thank You,"] = "Danke.";
|
$a->strings["Thank You,"] = "Danke.";
|
||||||
$a->strings["%s Administrator"] = "der Administrator von %s";
|
$a->strings["%s Administrator"] = "der Administrator von %s";
|
||||||
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
|
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
|
||||||
@ -469,7 +469,7 @@ $a->strings["%1\$s's birthday"] = "%1\$ss Geburtstag";
|
|||||||
$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s";
|
$a->strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s";
|
||||||
$a->strings["Attachments:"] = "Anhänge:";
|
$a->strings["Attachments:"] = "Anhänge:";
|
||||||
$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i";
|
$a->strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i";
|
||||||
$a->strings["Hubzilla event notification:"] = "Hubzilla Termin-Benachrichtigung:";
|
$a->strings["Redmatrix event notification:"] = "RedMatrix Termin-Benachrichtigung:";
|
||||||
$a->strings["Starts:"] = "Beginnt:";
|
$a->strings["Starts:"] = "Beginnt:";
|
||||||
$a->strings["Finishes:"] = "Endet:";
|
$a->strings["Finishes:"] = "Endet:";
|
||||||
$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen";
|
$a->strings["Missing room name"] = "Der Chatraum hat keinen Namen";
|
||||||
@ -612,7 +612,7 @@ $a->strings["Permission denied"] = "Keine Berechtigung";
|
|||||||
$a->strings["(Unknown)"] = "(Unbekannt)";
|
$a->strings["(Unknown)"] = "(Unbekannt)";
|
||||||
$a->strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar.";
|
$a->strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar.";
|
||||||
$a->strings["Visible to you only."] = "Nur für Dich sichtbar.";
|
$a->strings["Visible to you only."] = "Nur für Dich sichtbar.";
|
||||||
$a->strings["Visible to anybody in this network."] = "Für jedes Mitglied der Hubzilla sichtbar.";
|
$a->strings["Visible to anybody in this network."] = "Für jedes Mitglied der RedMatrix sichtbar.";
|
||||||
$a->strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist.";
|
$a->strings["Visible to anybody authenticated."] = "Für jeden sichtbar, der angemeldet ist.";
|
||||||
$a->strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar.";
|
$a->strings["Visible to anybody on %s."] = "Für jeden auf %s sichtbar.";
|
||||||
$a->strings["Visible to all connections."] = "Für alle Verbindungen sichtbar.";
|
$a->strings["Visible to all connections."] = "Für alle Verbindungen sichtbar.";
|
||||||
@ -1018,7 +1018,7 @@ $a->strings["Currently blocked"] = "Derzeit blockiert";
|
|||||||
$a->strings["Currently ignored"] = "Derzeit ignoriert";
|
$a->strings["Currently ignored"] = "Derzeit ignoriert";
|
||||||
$a->strings["Currently archived"] = "Derzeit archiviert";
|
$a->strings["Currently archived"] = "Derzeit archiviert";
|
||||||
$a->strings["Currently pending"] = "Derzeit anstehend";
|
$a->strings["Currently pending"] = "Derzeit anstehend";
|
||||||
$a->strings["Hubzilla - "The Network""] = "Hubzilla – "Das Netzwerk"";
|
$a->strings["Red Matrix - "The Network""] = "RedMatrix – "Das Netzwerk"";
|
||||||
$a->strings["Welcome to %s"] = "Willkommen auf %s";
|
$a->strings["Welcome to %s"] = "Willkommen auf %s";
|
||||||
$a->strings["Continue"] = "Fortfahren";
|
$a->strings["Continue"] = "Fortfahren";
|
||||||
$a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung";
|
$a->strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung";
|
||||||
@ -1034,7 +1034,7 @@ $a->strings["Edit post"] = "Bearbeite Beitrag";
|
|||||||
$a->strings["Delete item?"] = "Eintrag löschen?";
|
$a->strings["Delete item?"] = "Eintrag löschen?";
|
||||||
$a->strings["Item not available."] = "Element nicht verfügbar.";
|
$a->strings["Item not available."] = "Element nicht verfügbar.";
|
||||||
$a->strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s";
|
$a->strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s";
|
||||||
$a->strings["Hubzilla channel"] = "Hubzilla-Kanal";
|
$a->strings["RedMatrix channel"] = "RedMatrix-Kanal";
|
||||||
$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl.";
|
$a->strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl.";
|
||||||
$a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen.";
|
$a->strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen.";
|
||||||
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird.";
|
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird.";
|
||||||
@ -1088,7 +1088,7 @@ $a->strings["Title:"] = "Titel:";
|
|||||||
$a->strings["Share this event"] = "Den Termin teilen";
|
$a->strings["Share this event"] = "Den Termin teilen";
|
||||||
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s";
|
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s";
|
||||||
$a->strings["Public Sites"] = "Öffentliche Server";
|
$a->strings["Public Sites"] = "Öffentliche Server";
|
||||||
$a->strings["The listed sites allow public registration into the Hubzilla. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten <strong>könnten</strong> nähere Details dazu stehen.";
|
$a->strings["The listed sites allow public registration into the Red Matrix. All sites in the matrix are interlinked so membership on any of them conveys membership in the matrix as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "Die hier aufgeführten Server erlauben Dir, einen Account in der Red-Matrix anzulegen. Alle Server der Matrix sind miteinander verbunden, so dass die Mitgliedschaft auf einem Server eine Verbindung zu beliebigen anderen Servern der Matrix ermöglicht. Es könnte sein, dass einige dieser Server kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den jeweiligen Seiten <strong>könnten</strong> nähere Details dazu stehen.";
|
||||||
$a->strings["Rate this hub"] = "Bewerte diesen Hub";
|
$a->strings["Rate this hub"] = "Bewerte diesen Hub";
|
||||||
$a->strings["Site URL"] = "Server-URL";
|
$a->strings["Site URL"] = "Server-URL";
|
||||||
$a->strings["Access Type"] = "Zugangstyp";
|
$a->strings["Access Type"] = "Zugangstyp";
|
||||||
@ -1237,7 +1237,7 @@ $a->strings["Please enable expert mode (in <a href=\"settings/features\">Setting
|
|||||||
$a->strings["Miscellaneous Settings"] = "Sonstige Einstellungen";
|
$a->strings["Miscellaneous Settings"] = "Sonstige Einstellungen";
|
||||||
$a->strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals";
|
$a->strings["Personal menu to display in your channel pages"] = "Eigenes Menü zur Anzeige auf den Seiten deines Kanals";
|
||||||
$a->strings["Remove this channel"] = "Diesen Kanal löschen";
|
$a->strings["Remove this channel"] = "Diesen Kanal löschen";
|
||||||
$a->strings["Hubzilla - Guests: Username: {your email address}, Password: +++"] = "Hubzilla – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++";
|
$a->strings["RedMatrix - Guests: Username: {your email address}, Password: +++"] = "RedMatrix – Gäste: Username: {Deine E-Mail-Adresse}, Passwort: +++";
|
||||||
$a->strings["Tag removed"] = "Schlagwort entfernt";
|
$a->strings["Tag removed"] = "Schlagwort entfernt";
|
||||||
$a->strings["Remove Item Tag"] = "Schlagwort entfernen";
|
$a->strings["Remove Item Tag"] = "Schlagwort entfernen";
|
||||||
$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:";
|
$a->strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:";
|
||||||
@ -1258,17 +1258,17 @@ $a->strings["Version %s"] = "Version %s";
|
|||||||
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps";
|
$a->strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps";
|
||||||
$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
|
$a->strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps";
|
||||||
$a->strings["Red"] = "Red";
|
$a->strings["Red"] = "Red";
|
||||||
$a->strings["This is a hub of the Hubzilla - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil der Hubzilla – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen.";
|
$a->strings["This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil der RedMatrix – eines globalen, kooperativen Netzwerks aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen.";
|
||||||
$a->strings["Tag: "] = "Schlagwort: ";
|
$a->strings["Tag: "] = "Schlagwort: ";
|
||||||
$a->strings["Last background fetch: "] = "Letzter Hintergrundabruf:";
|
$a->strings["Last background fetch: "] = "Letzter Hintergrundabruf:";
|
||||||
$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse";
|
$a->strings["Running at web location"] = "Erreichbar unter der Web-Adresse";
|
||||||
$a->strings["Please visit <a href=\"https://redmatrix.me\">Redmatrix.me</a> to learn more about the Hubzilla."] = "Bitte besuchen Sie <a href=\"https://redmatrix.me\">Redmatrix.me</a>, um mehr über Hubzilla zu erfahren.";
|
$a->strings["Please visit <a href=\"https://redmatrix.me\">RedMatrix.me</a> to learn more about the Red Matrix."] = "Bitte besuchen Sie <a href=\"https://redmatrix.me\">RedMatrix.me</a>, um mehr über RedMatrix zu erfahren.";
|
||||||
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
|
$a->strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche";
|
||||||
$a->strings["Suggestions, praise, etc. - please email \"hubzilla\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'hubzilla' at librelist - dot - com";
|
$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com";
|
||||||
$a->strings["Site Administrators"] = "Administratoren";
|
$a->strings["Site Administrators"] = "Administratoren";
|
||||||
$a->strings["Help:"] = "Hilfe:";
|
$a->strings["Help:"] = "Hilfe:";
|
||||||
$a->strings["Not Found"] = "Nicht gefunden";
|
$a->strings["Not Found"] = "Nicht gefunden";
|
||||||
$a->strings["Hubzilla Server - Setup"] = "Hubzilla Server - Installation";
|
$a->strings["Red Matrix Server - Setup"] = "Red Matrix Server - Installation";
|
||||||
$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden.";
|
$a->strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden.";
|
||||||
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS.";
|
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS.";
|
||||||
$a->strings["Could not create table."] = "Kann Tabelle nicht erstellen.";
|
$a->strings["Could not create table."] = "Kann Tabelle nicht erstellen.";
|
||||||
@ -1278,7 +1278,7 @@ $a->strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"
|
|||||||
$a->strings["System check"] = "Systemprüfung";
|
$a->strings["System check"] = "Systemprüfung";
|
||||||
$a->strings["Check again"] = "Bitte nochmal prüfen";
|
$a->strings["Check again"] = "Bitte nochmal prüfen";
|
||||||
$a->strings["Database connection"] = "Datenbank Verbindung";
|
$a->strings["Database connection"] = "Datenbank Verbindung";
|
||||||
$a->strings["In order to install Hubzilla we need to know how to connect to your database."] = "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können.";
|
$a->strings["In order to install Red Matrix we need to know how to connect to your database."] = "Um die Red-Matrix installieren zu können, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können.";
|
||||||
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast.";
|
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast.";
|
||||||
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst.";
|
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst.";
|
||||||
$a->strings["Database Server Name"] = "Datenbank-Servername";
|
$a->strings["Database Server Name"] = "Datenbank-Servername";
|
||||||
@ -1491,10 +1491,10 @@ $a->strings["You have no more invitations available"] = "Du hast keine weiteren
|
|||||||
$a->strings["Send invitations"] = "Einladungen senden";
|
$a->strings["Send invitations"] = "Einladungen senden";
|
||||||
$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:";
|
$a->strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:";
|
||||||
$a->strings["Your message:"] = "Deine Nachricht:";
|
$a->strings["Your message:"] = "Deine Nachricht:";
|
||||||
$a->strings["Please join my community on Hubzilla."] = "Schließe Dich uns in der Hubzilla an!";
|
$a->strings["Please join my community on RedMatrix."] = "Schließe Dich uns in der RedMatrix an!";
|
||||||
$a->strings["You will need to supply this invitation code: "] = "Gib folgenden Einladungs-Code ein:";
|
$a->strings["You will need to supply this invitation code: "] = "Gib folgenden Einladungs-Code ein:";
|
||||||
$a->strings["1. Register at any Hubzilla location (they are all inter-connected)"] = "1. Registriere Dich auf irgendeinem Hubzilla-Server (sie sind alle miteinander verbunden)";
|
$a->strings["1. Register at any RedMatrix location (they are all inter-connected)"] = "1. Registriere Dich auf irgendeinem RedMatrix-Server (sie sind alle miteinander verbunden)";
|
||||||
$a->strings["2. Enter my Hubzilla network address into the site searchbar."] = "2. Gib meine Hubzilla-Adresse im Suchfeld ein.";
|
$a->strings["2. Enter my RedMatrix network address into the site searchbar."] = "2. Gib meine RedMatrix-Adresse im Suchfeld ein.";
|
||||||
$a->strings["or visit "] = "oder besuche";
|
$a->strings["or visit "] = "oder besuche";
|
||||||
$a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]";
|
$a->strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]";
|
||||||
$a->strings["Location not found."] = "Klon nicht gefunden.";
|
$a->strings["Location not found."] = "Klon nicht gefunden.";
|
||||||
@ -1737,7 +1737,7 @@ $a->strings["Check to verify email addresses used in account registration (recom
|
|||||||
$a->strings["Force publish"] = "Veröffentlichung erzwingen";
|
$a->strings["Force publish"] = "Veröffentlichung erzwingen";
|
||||||
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen.";
|
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen.";
|
||||||
$a->strings["Disable discovery tab"] = "Den „Entdecken“-Reiter ausblenden";
|
$a->strings["Disable discovery tab"] = "Den „Entdecken“-Reiter ausblenden";
|
||||||
$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen Hubzilla-Hubs geholt wurden.";
|
$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Entferne den „Entdecken“-Reiter aus der Matrix-Seite, in dem öffentliche Inhalte angezeigt werden, die von anderen RedMatrix-Hubs geholt wurden.";
|
||||||
$a->strings["No login on Homepage"] = "Kein Login auf der Homepage";
|
$a->strings["No login on Homepage"] = "Kein Login auf der Homepage";
|
||||||
$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört).";
|
$a->strings["Check to hide the login form from your sites homepage when visitors arrive who are not logged in (e.g. when you put the content of the homepage in via the site channel)."] = "Aktivieren, um das Login-Formular auf der Startseite der Seite zu verbergen (z.B. weil es das Layout der Homepage des Seiten-Kanals stört).";
|
||||||
$a->strings["Proxy user"] = "Proxy Benutzer";
|
$a->strings["Proxy user"] = "Proxy Benutzer";
|
||||||
@ -1842,7 +1842,7 @@ $a->strings["Remove This Account"] = "Dieses Konto löschen";
|
|||||||
$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden.";
|
$a->strings["This will completely remove this account including all its channels from the network. Once this has been done it is not recoverable."] = "Hiermit wird dieses Nutzerkonto einschließlich all seiner Kanäle komplett aus dem Netzwerk entfernt. Dieser Vorgang kann nicht rückgängig gemacht werden.";
|
||||||
$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:";
|
$a->strings["Please enter your password for verification:"] = "Bitte gib zur Bestätigung Dein Passwort ein:";
|
||||||
$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen";
|
$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen";
|
||||||
$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem Hubzilla-Hub aus dem Netzwerk entfernt";
|
$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standardmäßig werden nur die Kanalklone auf diesem RedMatrix-Hub aus dem Netzwerk entfernt";
|
||||||
$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]";
|
$a->strings["[Embedded content - reload page to view]"] = "[Eingebettete Inhalte – lade die Seite neu, um sie anzuzeigen]";
|
||||||
$a->strings["Wall Photos"] = "Wall Fotos";
|
$a->strings["Wall Photos"] = "Wall Fotos";
|
||||||
$a->strings["Profile Match"] = "Profil-Übereinstimmungen";
|
$a->strings["Profile Match"] = "Profil-Übereinstimmungen";
|
||||||
@ -1870,7 +1870,7 @@ $a->strings["New Menu Element"] = "Neues Menü-Bestandteil";
|
|||||||
$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements";
|
$a->strings["Menu Item Permissions"] = "Zugriffsrechte des Menü-Elements";
|
||||||
$a->strings["Link text"] = "Link Text";
|
$a->strings["Link text"] = "Link Text";
|
||||||
$a->strings["URL of link"] = "URL des Links";
|
$a->strings["URL of link"] = "URL des Links";
|
||||||
$a->strings["Use Hubzilla magic-auth if available"] = "Verwende die automatische Hubzilla-Authentifizierung (magic-auth), wenn verfügbar";
|
$a->strings["Use RedMatrix magic-auth if available"] = "Verwende die automatische RedMatrix-Authentifizierung (magic-auth), wenn verfügbar";
|
||||||
$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster";
|
$a->strings["Open link in new window"] = "Öffne Link in neuem Fenster";
|
||||||
$a->strings["Order in list"] = "Reihenfolge in der Liste";
|
$a->strings["Order in list"] = "Reihenfolge in der Liste";
|
||||||
$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert";
|
$a->strings["Higher numbers will sink to bottom of listing"] = "Größere Nummern werden weiter unten in der Auflistung einsortiert";
|
||||||
@ -1891,7 +1891,7 @@ $a->strings["Help with this feature"] = "Hilfe zu dieser Funktion";
|
|||||||
$a->strings["Layout Name"] = "Layout-Name";
|
$a->strings["Layout Name"] = "Layout-Name";
|
||||||
$a->strings["Like/Dislike"] = "Mögen/Nicht mögen";
|
$a->strings["Like/Dislike"] = "Mögen/Nicht mögen";
|
||||||
$a->strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden.";
|
$a->strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden.";
|
||||||
$a->strings["Please <a href=\"rmagic\">login with your Hubzilla ID</a> or <a href=\"register\">register as a new Redmatrix.member</a> to continue."] = "Bitte <a href=\"rmagic\">melde Dich mit Deiner Hubzilla-ID an</a> oder <a href=\"register\">registriere Dich als neues Mitglied der Hubzilla</a>, um fortzufahren.";
|
$a->strings["Please <a href=\"rmagic\">login with your RedMatrix ID</a> or <a href=\"register\">register as a new RedMatrix member</a> to continue."] = "Bitte <a href=\"rmagic\">melde Dich mit Deiner RedMatrix-ID an</a> oder <a href=\"register\">registriere Dich als neues Mitglied der RedMatrix</a>, um fortzufahren.";
|
||||||
$a->strings["Invalid request."] = "Ungültige Anfrage.";
|
$a->strings["Invalid request."] = "Ungültige Anfrage.";
|
||||||
$a->strings["thing"] = "Sache";
|
$a->strings["thing"] = "Sache";
|
||||||
$a->strings["Channel unavailable."] = "Kanal nicht vorhanden.";
|
$a->strings["Channel unavailable."] = "Kanal nicht vorhanden.";
|
||||||
@ -2037,7 +2037,7 @@ $a->strings["Right offset of the section element"] = "Rechter Rand des Section E
|
|||||||
$a->strings["Section width"] = "Breite der Section";
|
$a->strings["Section width"] = "Breite der Section";
|
||||||
$a->strings["Left offset of the aside"] = "Linker Rand des Aside-Elements";
|
$a->strings["Left offset of the aside"] = "Linker Rand des Aside-Elements";
|
||||||
$a->strings["Right offset of the aside element"] = "Rechter Rand des Aside-Elements";
|
$a->strings["Right offset of the aside element"] = "Rechter Rand des Aside-Elements";
|
||||||
$a->strings["Light (Hubzilla default)"] = "Hell (Hubzilla-Voreinstellung)";
|
$a->strings["Light (Red Matrix default)"] = "Hell (RedMatrix-Voreinstellung)";
|
||||||
$a->strings["Narrow navbar"] = "Schmale Navigationsleiste";
|
$a->strings["Narrow navbar"] = "Schmale Navigationsleiste";
|
||||||
$a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste";
|
$a->strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste";
|
||||||
$a->strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben";
|
$a->strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben";
|
||||||
@ -2070,7 +2070,7 @@ $a->strings["Sloppy photo albums"] = "Schräge Fotoalben";
|
|||||||
$a->strings["Are you a clean desk or a messy desk person?"] = "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?";
|
$a->strings["Are you a clean desk or a messy desk person?"] = "Bist Du jemand, der einen aufgeräumten Schreibtisch hat, oder eher einen chaotischen?";
|
||||||
$a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen.";
|
$a->strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen.";
|
||||||
$a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s";
|
$a->strings["Update Error at %s"] = "Aktualisierungsfehler auf %s";
|
||||||
$a->strings["Create an account to access services and applications within the Hubzilla"] = "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können.";
|
$a->strings["Create an account to access services and applications within the Red Matrix"] = "Erstelle einen Account, um Anwendungen und Dienste innerhalb der Red-Matrix verwenden zu können.";
|
||||||
$a->strings["Password"] = "Kennwort";
|
$a->strings["Password"] = "Kennwort";
|
||||||
$a->strings["Remember me"] = "Angaben speichern";
|
$a->strings["Remember me"] = "Angaben speichern";
|
||||||
$a->strings["Forgot your password?"] = "Passwort vergessen?";
|
$a->strings["Forgot your password?"] = "Passwort vergessen?";
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Hallo,
|
Hallo,
|
||||||
ich bin der Webserver für {{$sitename}};
|
ich bin der Webserver für {{$sitename}};
|
||||||
|
|
||||||
Die Hubzilla-Entwickler haben kürzlich das Update {{$update}} veröffentlicht,
|
Die RedMatrix-Entwickler haben kürzlich das Update {{$update}} veröffentlicht,
|
||||||
aber als ich versuchte, es zu installieren, ging irgendwas furchtbar schief.
|
aber als ich versuchte, es zu installieren, ging irgendwas furchtbar schief.
|
||||||
Das muss so bald als möglich gelöst werden und erfordert einen manuellen Eingriff.
|
Das muss so bald als möglich gelöst werden und erfordert einen manuellen Eingriff.
|
||||||
Bitte kontaktiere einen Red-Entwickler, wenn Du nicht weißt, wie Du das Problem
|
Bitte kontaktiere einen Red-Entwickler, wenn Du nicht weißt, wie Du das Problem
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
{{include file="field_input.tpl" field=$menu_name}}
|
{{include file="field_input.tpl" field=$menu_name}}
|
||||||
{{include file="field_input.tpl" field=$menu_desc}}
|
{{include file="field_input.tpl" field=$menu_desc}}
|
||||||
|
|
||||||
{{include file="field_checkbox.tpl" field=$menu_bookmark}}
|
{{include file="field_checkbox.tpl" field=$menu_bookmark}}
|
||||||
<div class="menuedit-submit-wrapper form-group pull-right" >
|
<div class="menuedit-submit-wrapper form-group pull-right" >
|
||||||
<button type="submit" name="submit" class="btn btn-primary">{{$submit}}</button>
|
<button type="submit" name="submit" class="btn btn-primary">{{$submit}}</button>
|
||||||
|
@ -11,6 +11,13 @@
|
|||||||
{{/if}}
|
{{/if}}
|
||||||
{{include file="field_input.tpl" field=$mitem_desc}}
|
{{include file="field_input.tpl" field=$mitem_desc}}
|
||||||
{{include file="field_input.tpl" field=$mitem_link}}
|
{{include file="field_input.tpl" field=$mitem_link}}
|
||||||
|
{{if $menu_names}}
|
||||||
|
<datalist id="menu-names">
|
||||||
|
{{foreach $menu_names as $menu_name}}
|
||||||
|
<option value="{{$menu_name}}">
|
||||||
|
{{/foreach}}
|
||||||
|
</datalist>
|
||||||
|
{{/if}}
|
||||||
{{include file="field_input.tpl" field=$mitem_order}}
|
{{include file="field_input.tpl" field=$mitem_order}}
|
||||||
{{include file="field_checkbox.tpl" field=$usezid}}
|
{{include file="field_checkbox.tpl" field=$usezid}}
|
||||||
{{include file="field_checkbox.tpl" field=$newwin}}
|
{{include file="field_checkbox.tpl" field=$newwin}}
|
||||||
|
@ -4,10 +4,13 @@
|
|||||||
{{if $menu.menu_desc}}
|
{{if $menu.menu_desc}}
|
||||||
<h3 class="pmenu-title">{{$menu.menu_desc}}{{if $edit}} <a href="mitem/{{$menu.menu_id}}" title="{{$edit}}"><i class="icon-pencil fakelink" title="{{$edit}}"></i></a>{{/if}}</h3>
|
<h3 class="pmenu-title">{{$menu.menu_desc}}{{if $edit}} <a href="mitem/{{$menu.menu_id}}" title="{{$edit}}"><i class="icon-pencil fakelink" title="{{$edit}}"></i></a>{{/if}}</h3>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $items }}
|
{{if $items}}
|
||||||
<ul class="pmenu-body{{if $wrap && !$class}} nav nav-pills nav-stacked{{elseif !$wrap && $class}} {{$class}}{{/if}}">
|
<ul class="pmenu-body{{if $wrap || !$class}} nav nav-pills nav-stacked{{elseif !$wrap || $class}} {{$class}}{{/if}}">
|
||||||
{{foreach $items as $mitem }}
|
{{foreach $items as $mitem }}
|
||||||
<li id="pmenu-item-{{$mitem.mitem_id}}" class="pmenu-item"><a href="{{$mitem.mitem_link}}" {{if $mitem.newwin}}target="_blank"{{/if}}>{{$mitem.mitem_desc}}</a></li>
|
<li id="pmenu-item-{{$mitem.mitem_id}}" class="pmenu-item{{if $mitem.submenu}} dropdown{{/if}}">
|
||||||
|
<a href="{{if $mitem.submenu}}#{{else}}{{$mitem.mitem_link}}{{/if}}"{{if $mitem.submenu}} class="dropdown-toggle" data-toggle="dropdown"{{/if}}{{if $mitem.newwin}}target="_blank"{{/if}}>{{$mitem.mitem_desc}}{{if $mitem.submenu}}<span class="caret"></span>{{/if}}</a>
|
||||||
|
{{if $mitem.submenu}}{{$mitem.submenu}}{{/if}}
|
||||||
|
</li>
|
||||||
{{/foreach }}
|
{{/foreach }}
|
||||||
</ul>
|
</ul>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
Reference in New Issue
Block a user