Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
c6f2760e
Commit
c6f2760e
authored
4 years ago
by
uhensler
Browse files
Options
Downloads
Patches
Plain Diff
OO-5103: Use the tight translation key
parent
482075b9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/olat/modules/appointments/ui/TopicsRunCoachController.java
+6
-6
6 additions, 6 deletions
...lat/modules/appointments/ui/TopicsRunCoachController.java
with
6 additions
and
6 deletions
src/main/java/org/olat/modules/appointments/ui/TopicsRunCoachController.java
+
6
−
6
View file @
c6f2760e
...
...
@@ -428,7 +428,7 @@ public class TopicsRunCoachController extends FormBasicController {
}
private
void
wrapOpenLink
(
TopicWrapper
wrapper
)
{
FormLink
link
=
uifactory
.
addFormLink
(
"open"
+
counter
++,
CMD_OPEN
,
"appointments.open"
,
null
,
flc
,
Link
.
LINK
);
FormLink
link
=
uifactory
.
addFormLink
(
"open"
+
counter
++,
CMD_OPEN
,
"appointments.open"
,
null
,
flc
,
Link
.
LINK
);
link
.
setIconRightCSS
(
"o_icon o_icon_start"
);
link
.
setUserObject
(
wrapper
.
getTopic
());
wrapper
.
setOpenLinkName
(
link
.
getName
());
...
...
@@ -442,29 +442,29 @@ public class TopicsRunCoachController extends FormBasicController {
dropdown
.
setOrientation
(
DropdownOrientation
.
right
);
wrapper
.
setToolsName
(
toolsName
);
FormLink
editorLink
=
uifactory
.
addFormLink
(
"edit_"
+
counter
++,
CMD_EDIT
,
"edit.topic"
,
null
,
flc
,
Link
.
LINK
);
FormLink
editorLink
=
uifactory
.
addFormLink
(
"edit_"
+
counter
++,
CMD_EDIT
,
"edit.topic"
,
null
,
flc
,
Link
.
LINK
);
editorLink
.
setIconLeftCSS
(
"o_icon o_icon-fw o_icon_edit"
);
editorLink
.
setUserObject
(
wrapper
.
getTopic
());
dropdown
.
addElement
(
editorLink
);
FormLink
groupLink
=
uifactory
.
addFormLink
(
"group_"
+
counter
++,
CMD_GROUPS
,
"edit.groups"
,
null
,
flc
,
Link
.
LINK
);
FormLink
groupLink
=
uifactory
.
addFormLink
(
"group_"
+
counter
++,
CMD_GROUPS
,
"edit.groups"
,
null
,
flc
,
Link
.
LINK
);
groupLink
.
setIconLeftCSS
(
"o_icon o_icon-fw o_icon_group"
);
groupLink
.
setUserObject
(
wrapper
.
getTopic
());
dropdown
.
addElement
(
groupLink
);
FormLink
exportLink
=
uifactory
.
addFormLink
(
"export_"
+
counter
++,
CMD_EXPORT
,
"export.participations"
,
null
,
flc
,
Link
.
LINK
);
FormLink
exportLink
=
uifactory
.
addFormLink
(
"export_"
+
counter
++,
CMD_EXPORT
,
"export.participations"
,
null
,
flc
,
Link
.
LINK
);
exportLink
.
setIconLeftCSS
(
"o_icon o_icon-fw o_icon_download"
);
exportLink
.
setUserObject
(
wrapper
.
getTopic
());
dropdown
.
addElement
(
exportLink
);
if
(
hasMeetings
)
{
FormLink
syncRecordingsLink
=
uifactory
.
addFormLink
(
"sync_"
+
counter
++,
CMD_SYNC
,
"sync.recordings"
,
flc
,
Link
.
LINK
);
FormLink
syncRecordingsLink
=
uifactory
.
addFormLink
(
"sync_"
+
counter
++,
CMD_SYNC
,
"sync.recordings"
,
null
,
flc
,
Link
.
LINK
);
syncRecordingsLink
.
setIconLeftCSS
(
"o_icon o_icon-fw o_vc_icon"
);
syncRecordingsLink
.
setUserObject
(
wrapper
.
getTopic
());
dropdown
.
addElement
(
syncRecordingsLink
);
}
FormLink
deleteLink
=
uifactory
.
addFormLink
(
"delete_"
+
counter
++,
CMD_DELETE
,
"delete.topic"
,
flc
,
Link
.
LINK
);
FormLink
deleteLink
=
uifactory
.
addFormLink
(
"delete_"
+
counter
++,
CMD_DELETE
,
"delete.topic"
,
null
,
flc
,
Link
.
LINK
);
deleteLink
.
setIconLeftCSS
(
"o_icon o_icon-fw o_icon_delete"
);
deleteLink
.
setUserObject
(
wrapper
.
getTopic
());
dropdown
.
addElement
(
deleteLink
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment