Skip to content
Snippets Groups Projects
Commit 9c0ff646 authored by fkiefer's avatar fkiefer
Browse files

OO-2753 Improve usability of catalog management in course

parent 10d08ec9
No related branches found
No related tags found
No related merge requests found
......@@ -372,6 +372,7 @@ new.test.intro=Neuen Test erstellen.
new.wiki=Wiki erstellen
new.wiki.intro=Neues Wiki erstellen
no.lifecycle=Keine Einschr\u00E4nkung
no.catalog.entries=Diese Resource wurde noch nicht im Katalog registriert. \r\n\r\n Verwenden Sie den "In Katalog einf\u00FCgen" Button in der Toolbar, um die Resource auf einer bestimmten Katalog-Ebenen hinzuzuf\u00FCgen. Der Katalog erlaubt es dem Benutzer je nach Zugriffskonfiguration nach bestimmten Eintr\u00E4gen zu suchen. Sie k\u00F6nnen die Resource auf mehreren Katalog-Ebenen hinzuf\u00FCgen.
nomembers=XXX No members
notification.mail.added.body=*** Das ist eine automatisch generierte Nachricht. Bitte antworten Sie nicht auf diese Nachricht *** \n\nSie wurden von {0} {1} ({2}) in einen Kurs eingeladen\: \n\nKursname\: $coursename\nBeschreibung\: $coursedescription\n\nBei Fragen kontaktieren Sie bitte {0} {1} ({2}).
notification.mail.added.subject=Kurs $coursename
......
......@@ -369,6 +369,7 @@ new.test.intro=Create new test
new.wiki=Create wiki
new.wiki.intro=Create new wiki
no.lifecycle=No limitation
no.catalog.entries=This resource has not been added to the catalog yet. \r\n\r\n Use the "Add to catalog" button in the toolbar above to add the resource to a specific level in the catalog. The catalog allows users to browse for available resources depending on th resource access configuration. You can add the resource to multiple catalog levels.
nomembers=XXX No members
notification.mail.added.body=*** This is an automatically generated message. Please do not answer to this message *** \r\n\r\nYou have been added by {0} {1} ({2}) to a course\:\r\n\r\nCourse name\: $coursename\r\nDescription\: $coursedescription\r\n\r\nIf you have questions regarding this action, please contact {0} {1} ({2}).
notification.mail.added.subject=Course $coursename
......
......@@ -99,6 +99,10 @@ public class CatalogSettingsController extends FormBasicController {
model = new CategoriesListModel(catalogEntries, columnsModel);
tableEl = uifactory.addTableElement(getWindowControl(), "table", model, 200, true, getTranslator(), formLayout);
tableEl.setCustomizeColumns(false);
tableEl.setVisible(true);
if (catalogEntries.size() == 0) {
tableEl.setEmtpyTableMessageKey("no.catalog.entries");
}
}
@Override
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment