Label der Titelfelder in den Formularen im SciOrga Modul an den Contenttyp angepasst (z.B. 'Bezeichnung der Abteilung' statt 'Titel der Seite').

git-svn-id: https://svn.libreccm.org/ccm/trunk@720 8810af33-2d31-482b-a856-94f89814c4df
master
jensp 2011-01-29 10:15:45 +00:00
parent 9458a60164
commit dfc9636031
5 changed files with 24 additions and 2 deletions

View File

@ -97,7 +97,11 @@ public class SciDepartmentPropertyForm
init(fse);
}
}
@Override
protected String getTitleLabel() {
return (String) SciOrganizationGlobalizationUtil.globalize(
"sciorganizations.ui.department.title").localize();
}
}

View File

@ -98,4 +98,10 @@ public class SciOrganizationPropertyForm
organization.save();
}
}
@Override
public String getTitleLabel() {
return (String) SciOrganizationGlobalizationUtil.globalize(
"sciorganizations.ui.organization.title").localize();
}
}

View File

@ -135,3 +135,6 @@ sciorganization.ui.project.subproject..confirm_remove=Are you sure to remove thi
sciorganization.ui.project.superproject..confirm_remove=Are you sure to remove the superior project?
sciorganization.ui.project.add_member=Add member
sciorganization.ui.department.publications=Publications of the department
sciorganizations.ui.department.title=Name of the department
sciorganizations.ui.organization.title=Name of the organization
sciorganizations.ui.project.title=Name of the project

View File

@ -135,3 +135,6 @@ sciorganization.ui.project.subproject..confirm_remove=Sind sie sicher das sie di
sciorganization.ui.project.superproject..confirm_remove=Wollen sie dieses \u00fcbergeordnete Projekt wirklich entfernen?
sciorganization.ui.project.add_member=Mitglied hinzuf\u00fcgen
sciorganization.ui.department.publications=Publikationen der Abteilung
sciorganizations.ui.department.title=Bezeichnung der Abteilung
sciorganizations.ui.organization.title=Name der Organisation
sciorganizations.ui.project.title=Name des Projektes

View File

@ -85,7 +85,7 @@ public class SciProjectPropertyForm
TextArea shortDesc = new TextArea(shortDescParam);
shortDesc.setCols(75);
shortDesc.setRows(5);
add(shortDesc);
add(shortDesc);
}
@Override
@ -122,4 +122,10 @@ public class SciProjectPropertyForm
init(fse);
}
}
@Override
public String getTitleLabel() {
return (String) PublicationGlobalizationUtil.globalize(
"sciorganizations.ui.project.title").localize();
}
}