Enhancements & fixes in 1.8
View Fx Nion's plugins
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
Great work.
Keep it up.
Cheers
USERS PLEASE CHANGE MANUALLY: In you english language file it should read
'custom_index_widgets:nogroups' => "There are no groups yet",
(instead of 'custom_index_widgets:nogroups' => "There are no files yet",)
And here is the german translation (
Fx Nion: you can add de.php in language folder with your distribution, if you like )
<?php
$german = array(
'custom_index_widgets:latest_bookmarks_index' => "Neueste Lesezeichen",
'custom_index_widgets:latest_groups_index' => "Neueste Gruppen",
'custom_index_widgets:latest_files_index' => "Neueste Dateien",
'custom_index_widgets:latest_blogs_index' => "Neueste Blogeinträge",
'custom_index_widgets:latest_members_index' => "Neueste Mitglieder",
'custom_index_widgets:nofiles' => "Keine Dateien gefunden",
'custom_index_widgets:nogroups' => "Keine Gruppen gefunden",
'custom_index_widgets:latest_news_index' => "Neueste Nachrichten",
'custom_index_widgets:latest_pages_index' => "Neueste Seiten",
'custom_index_widgets:latest_events_index' => 'Eingehende Events',
'custom_index_widgets:latest_wire_index' => 'Neuester Wire-Beitrag',
'custom_index_widgets:inline_content_index' => 'Eigenes HTML',
'custom_index_widgets:html_content' => 'Ihr Text',
'custom_index_widgets:latest_generic_index'=>"Generischer Inhalt",
'custom_index_widgets:latest_tasks_index'=>"Neueste Aufgaben",
'custom_index_widgets:latest_activity_index' => 'Aktivitäten',
'custom_index_widgets:cloud_generic_index'=>"Tag Cloud",
'custom_index_widgets:widget_subtype'=>"Widget-Subtyp",
'custom_index_widgets:metadata_name' => "Metadaten",
'custom_index_widgets:threshold'=> "Thresold",
'custom_index_widgets:latest_video_index' => 'Neueste Videos',
'custom_index_widgets:rich_media_index' => "Multimedia Inhalte",
'custom_index_widgets:widget_video_width' => "Breite (Nur Zahl, ohne px oder %)",
'custom_index_widgets:widget_video_height' => "Höhe (Nur Zahl, ohne px oder %)",
'custom_index_widgets:widget_video_url' => "URL",
'custom_index_widgets:widget_video_caption' => "Überschrift",
'custom_index_widgets:layout' => "Layout",
'custom_index_widgets:index_2rmsb' => '2 Spalten, [Mittelbreit, Schmal] - [Big]',
'custom_index_widgets:index_2rsmb' => '2 Spalten, [Schmal, Mittelbreit] - [Big]',
'custom_index_widgets:index_2rhhb' => '2 Spalten, [Halbe Breite, Halbe Breite] - [Big]',
'custom_index_widgets:index_1rsss' => '1 Spalte, [Schmal, Schmal, Schmal]',
'custom_index_widgets:index_2rbhh' => '2 Spalten, [Big] -[Halbe Breite, Halbe Breite]',
'custom_index_widgets:index_2rbsm' => '2 Spalten, [Big] -[Schmal, Mittelbreit]',
'custom_index_widgets:index_2rbms' => '2 Spalten, [Big] -[Mittelbreit, Schmal]',
'custom_index_widgets:area1' => 'Widgets Zone 1',
'custom_index_widgets:area2' => 'Widgets Zone 2',
'custom_index_widgets:area3' => 'Widgets Zone 3',
'custom_index_widgets:admin:notfound' => 'Seite nicht gefunden',
'custom_index_widgets:index' => "Widgets aktiv auf Index",
'custom_index_widgets:num_items' => "Einzahl Module",
'custom_index_widgets:reset' => "Zonen auf Standard setzen",
'custom_index_widgets:pleaselogin' => "Anmelden für alle Details ...",
'custom_index_widgets:widget_title' => "Widget-Titel überschreiben (auf index-Seite anstelle des Standardtitels des Widgets)",
'custom_index_widgets:context_mode' => "Layout-Stil",
'custom_index_widgets:context_list' => "Liste",
'custom_index_widgets:context_detail' => "Details",
'custom_index_widgets:login_style'=>"Login-Position",
'custom_index_widgets:inlayout'=>"Im Layout",
'custom_index_widgets:topbar'=>"Top-Leiste",
'custom_index_widgets:widget_all_groups' => "Alle Gruppen",
);
add_translation("de",$german);
?>
Hi Fx NION... many thanks for your kind comments :) A pleasure!
I am really glad you are still working on this plugin... together with all your other plugins, this is absolutely FANTASTIC!
I have given the new version a test on my test site, and I notice one or two things:
Just an idea... it would be great to have this kind of draggable widget thing for Group Profiles as well :)
Hey all,
mod\custom_index_widgets\views\default\widgets
rename latest_izap_videos to latest_video_index
That will get Video Widget working. There are other ways... Basically the start.php file at mod\custom_index_widgets is looking for latest_video_index and not latest_izap_videos see below:
if(is_plugin_enabled('izap_videos'))
add_widget_type('latest_video_index',elgg_echo ('custom_index_widgets:latest_video_index'),elgg_echo ('custom_index_widgets:latest_video_index'), "custom_index_widgets", true);
I took the path of least resistance and just renamed the folder.
Hope this helps someone.
Well done elgg_noob! Thanks for that snippit.
Your welcome Mark Bridges, feels good to be able to reciprocate :-)
@elgg_noob: Yup, that's how it was in the original post on version 1.7. I'm not sure why it was changed in 1.8.
Ok, i take these things inot account, see you in the 1.9:
Thanks to all.