Oberfläche aufräumen...
This commit is contained in:
@@ -10,6 +10,8 @@ class FetprofilesController < ApplicationController
|
|||||||
@fetprofiles = Fetprofile.where(:active=>false).order(:vorname,:nachname) if params[:filter]== "notactive"
|
@fetprofiles = Fetprofile.where(:active=>false).order(:vorname,:nachname) if params[:filter]== "notactive"
|
||||||
|
|
||||||
@gremientabs = Gremium.tabs
|
@gremientabs = Gremium.tabs
|
||||||
|
@toolbar_elements << {:hicon=>'icon-plus', :text=> I18n.t('profile.new_profile'),:path => new_fetprofile_path(@fetprofile) } if can? :new, @fetprofile
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html # index.html.erb
|
format.html # index.html.erb
|
||||||
end
|
end
|
||||||
@@ -87,7 +89,13 @@ class FetprofilesController < ApplicationController
|
|||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
if @fetprofile.update_attributes(params[:fetprofile])
|
if @fetprofile.update_attributes(params[:fetprofile])
|
||||||
format.html { redirect_to @fetprofile, notice: 'Fetprofile was successfully updated.' }
|
format.html {
|
||||||
|
unless params[:button]=="continue" || params[:commit]=="continue"
|
||||||
|
redirect_to @fetprofile, notice: 'Fetprofile was successfully updated.'
|
||||||
|
else
|
||||||
|
redirect_to edit_fetprofile_path(@fetprofile), notice: 'Fetprofile was successfully updated.'
|
||||||
|
end
|
||||||
|
}
|
||||||
format.json { head :no_content }
|
format.json { head :no_content }
|
||||||
else
|
else
|
||||||
@memberships=@fetprofile.memberships.order(:typ)
|
@memberships=@fetprofile.memberships.order(:typ)
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ class GalleriesController < ApplicationController
|
|||||||
# GET /galleries.json
|
# GET /galleries.json
|
||||||
def index
|
def index
|
||||||
@galleries = Gallery.all
|
@galleries = Gallery.all
|
||||||
@toolbar_elements << {:hicon => 'icon-plus', :text => I18n.t('fotos.new-gallery'), :path => new_gallery_path }
|
@toolbar_elements << {:hicon => 'icon-plus', :text => I18n.t('fotos.new-gallery'), :path => new_gallery_path } if can? :new, Gallery
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html # index.html.erb
|
format.html # index.html.erb
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ class StudienController < ApplicationController
|
|||||||
@topbar_elements=[{:hicon=>'icon-list', :text=>I18n.t("studien.allestudien"),:path=>studien_path}]
|
@topbar_elements=[{:hicon=>'icon-list', :text=>I18n.t("studien.allestudien"),:path=>studien_path}]
|
||||||
@topbar_elements<<{:hicon=>'icon-list', :text=>I18n.t("modul.list"),:path=>moduls_path}
|
@topbar_elements<<{:hicon=>'icon-list', :text=>I18n.t("modul.list"),:path=>moduls_path}
|
||||||
@topbar_elements<<{:hicon=>'icon-list', :text=>I18n.t("lva.list"),:path=>lvas_path}
|
@topbar_elements<<{:hicon=>'icon-list', :text=>I18n.t("lva.list"),:path=>lvas_path}
|
||||||
@toolbar_elements<<{:icon =>:plus, :hicon=>'icon-plus-sign', :text=> I18n.t('studien.new') ,:path=>new_studium_path }
|
@toolbar_elements<<{:icon =>:plus, :hicon=>'icon-plus-sign', :text=> I18n.t('studien.new') ,:path=>new_studium_path } if can? :new, Studium
|
||||||
# @toolbar_elements<<{:text=> I18n.t('modulgruppe.show.link') ,:path=>modulgruppen_path }
|
# @toolbar_elements<<{:text=> I18n.t('modulgruppe.show.link') ,:path=>modulgruppen_path }
|
||||||
end
|
end
|
||||||
|
|
||||||
@@ -31,14 +31,14 @@ class StudienController < ApplicationController
|
|||||||
end
|
end
|
||||||
@studienphasen << {:modulgruppen=>modulgruppen, :phase => ph}.merge(opts)
|
@studienphasen << {:modulgruppen=>modulgruppen, :phase => ph}.merge(opts)
|
||||||
end
|
end
|
||||||
|
@toolbar_elements=[]
|
||||||
@toolbar_elements=[{:icon=>:plus, :hicon =>'icon-plus-sign' ,:text=> I18n.t('studien.new') , :path => new_studium_path(@studium) },
|
@toolbar_elements<<{:icon=>:plus, :hicon =>'icon-plus-sign' ,:text=> I18n.t('studien.new') , :path => new_studium_path(@studium) } if can? :new, Studium
|
||||||
{:icon=>:pencil, :hicon=>'icon-pencil',:text =>I18n.t('common.edit'),:path => edit_studium_path(@studium)},
|
@toolbar_elements<<{:icon=>:pencil, :hicon=>'icon-pencil',:text =>I18n.t('common.edit'),:path => edit_studium_path(@studium)} if can? :edit, Studium
|
||||||
{:icon=>:pencil, :hicon=>'icon-pencil',:text =>I18n.t('common.edit'),:path => edit_lvas_studium_path(@studium)},
|
@toolbar_elements<<{:icon=>:pencil, :hicon=>'icon-pencil',:text =>I18n.t('common.edit'),:path => edit_lvas_studium_path(@studium)} if can? :edit_lvas, Studium
|
||||||
{:hicon=>'icon-remove-circle', :text=> I18n.t('common.delete'),:path => studium_path(@studium), :method=> :delete,:confirm=>'Sure?' }]
|
@toolbar_elements<<{:hicon=>'icon-remove-circle', :text=> I18n.t('common.delete'),:path => studium_path(@studium), :method=> :delete,:confirm=>'Sure?' } if can? :delete, Studium
|
||||||
|
@toolbar_modulgruppen =[]
|
||||||
@toolbar_modulgruppen =[ {:hicon=>'icon-plus-sign', :text=> I18n.t('modulgruppe.new'), :path=>new_studium_modulgruppe_path(@studium)},
|
@toolbar_modulgruppen << {:hicon=>'icon-plus-sign', :text=> I18n.t('modulgruppe.new'), :path=>new_studium_modulgruppe_path(@studium)} if can? :new, Modulgruppe
|
||||||
{:hicon=>'icon-list', :text => I18n.t('modulgruppe.list'), :path=>modulgruppen_path}]
|
@toolbar_modulgruppen << {:hicon=>'icon-list', :text => I18n.t('modulgruppe.list'), :path=>modulgruppen_path} if can? :index, Modulgruppe
|
||||||
case params[:ansicht]
|
case params[:ansicht]
|
||||||
when 'semesteransicht'
|
when 'semesteransicht'
|
||||||
when 'infoansicht'
|
when 'infoansicht'
|
||||||
|
|||||||
@@ -4,8 +4,9 @@ class ThemengruppenController < ApplicationController
|
|||||||
load_and_authorize_resource
|
load_and_authorize_resource
|
||||||
def index
|
def index
|
||||||
@themengruppen = Themengruppe.where(:public=>true).order(:priority).reverse
|
@themengruppen = Themengruppe.where(:public=>true).order(:priority).reverse
|
||||||
@toolbar_elements = [{:icon=>:plus, :hicon=>'icon-plus-sign', :text=>I18n.t('themengruppe.new'), :path=>new_themengruppe_path()}]
|
@toolbar_elements = []
|
||||||
@toolbar_elements = [{:icon=>:plus, :hicon=>'icon-plus-sign', :text=>I18n.t('themengruppe.manage_all'), :path=>verwalten_all_themengruppen_path()}]
|
@toolbar_elements << {:icon=>:plus, :hicon=>'icon-plus-sign', :text=>I18n.t('themengruppe.new'), :path=>new_themengruppe_path()} if can? :new, Themengruppe
|
||||||
|
@toolbar_elements << {:icon=>:plus, :hicon=>'icon-plus-sign', :text=>I18n.t('themengruppe.manage_all'), :path=>verwalten_all_themengruppen_path()} if can? :verwalten_all, Themengruppe
|
||||||
|
|
||||||
respond_to do |format|
|
respond_to do |format|
|
||||||
format.html # index.html.erb
|
format.html # index.html.erb
|
||||||
|
|||||||
@@ -63,7 +63,7 @@ end
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
def text
|
def text
|
||||||
I18n.l(self.start) +" bis "+ I18n.l(self.ende)
|
I18n.l(self.start) +" "+ I18n.t("cal.bis")+" "+ I18n.l(self.ende)
|
||||||
end
|
end
|
||||||
scope :public, -> { where(:public => :true) }
|
scope :public, -> { where(:public => :true) }
|
||||||
# scope :upcoming, -> { where("start >= ?" , Time.now).where("start <= ?", 28.days.from_now) }
|
# scope :upcoming, -> { where("start >= ?" , Time.now).where("start <= ?", 28.days.from_now) }
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
</div> </div>
|
</div> </div>
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
<div class="span12">
|
<div class="span12">
|
||||||
<%= f.input :desc %>
|
<%= f.input :desc , input_html: {style: "width:100%"}%>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
@@ -30,23 +30,30 @@
|
|||||||
|
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
<div class="span6">
|
<div class="span6">
|
||||||
Adresse:
|
|
||||||
|
<%= I18n.t("fetprofile.adresse") %>:
|
||||||
|
|
||||||
<%=f.input :street %>
|
<%=f.input :street %>
|
||||||
<%=f.input :plz %>
|
<table><tr><td>
|
||||||
<%=f.input :city %>
|
<%=f.input :plz, input_html: {style: "width:5em"} %></td>
|
||||||
KOntakt:
|
<td><%=f.input :city, input_html: {style: "width:5em"} %></td></tr></table>
|
||||||
<%=f.input :instant %>
|
|
||||||
<%=f.input :skype %>
|
|
||||||
<%=f.input :telnr %>
|
<%=f.input :telnr %>
|
||||||
<%=f.input :hdynr %>
|
<%=f.input :hdynr %>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="span6">
|
<div class="span6">
|
||||||
Geburtstag:
|
<%= I18n.t("fetprofile.geburtstag") %>:
|
||||||
<%=f.input :birth_day %>
|
<table><tr>
|
||||||
<%=f.input :birth_month %>
|
<td><%=f.input :birth_day, input_html: {style: "width:3em"}%></td>
|
||||||
<%=f.input :birth_year %>
|
<td><%=f.input :birth_month, input_html: {style: "width:3em"} %></td>
|
||||||
|
<td><%=f.input :birth_year, input_html: {style: "width:5em"} %></td>
|
||||||
|
</tr></table>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<%=f.input :instant %>
|
||||||
|
<%=f.input :skype %>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
@@ -60,7 +67,9 @@ Geburtstag:
|
|||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
<div class="span12">
|
<div class="span12">
|
||||||
<%= f.actions do %>
|
<%= f.actions do %>
|
||||||
<%= f.action :submit, :as => :input %>
|
<%= f.action :submit, :as => :input , :label=>I18n.t("common.save") %>
|
||||||
|
<%= f.action :submit, :as => :input, :button_html=>{value: "continue"} , :label=>I18n.t("common.savecont") %>
|
||||||
|
<%= f.action :cancel, :as=> :link , :label=>I18n.t("common.cancel") %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<h1>Editing fetprofile</h1>
|
<h1><%= I18n.t("fetprofile.edit")%></h1>
|
||||||
|
|
||||||
<%= render 'form' %>
|
<%= render 'form' %>
|
||||||
|
|
||||||
<%= link_to 'Show', @fetprofile %> |
|
|
||||||
<%= link_to 'Back', fetprofiles_path %>
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,9 +6,15 @@
|
|||||||
<%= I18n.t 'profile.active_members' if params[:filter].nil? || params[:filter]== "active"
|
<%= I18n.t 'profile.active_members' if params[:filter].nil? || params[:filter]== "active"
|
||||||
%>
|
%>
|
||||||
</h1>
|
</h1>
|
||||||
|
<div class="row-fluid">
|
||||||
|
<div class="span12">
|
||||||
|
<%= render 'layouts/pretty_toolbar' %>
|
||||||
|
|
||||||
|
<% link_to I18n.t('profile.new_profile'), new_fetprofile_path %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<ul class="unstyled fetprofile_list linkbox-list" style="width:100%">
|
<ul class="unstyled fetprofile_list linkbox-list" style="width:100%">
|
||||||
|
|
||||||
<% @fetprofiles.each do |fetprofile| %>
|
<% @fetprofiles.each do |fetprofile| %>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
@@ -39,11 +45,7 @@
|
|||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<div class="row-fluid">
|
</div>
|
||||||
<div class="span12">
|
|
||||||
<%= link_to I18n.t('profile.new_profile'), new_fetprofile_path %>
|
|
||||||
</div>
|
|
||||||
</div></div>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
|
|
||||||
<%= render 'form' %>
|
<%= render 'form' %>
|
||||||
|
|
||||||
<%= link_to I18n.t('common.back'), fetprofiles_path %>
|
|
||||||
|
|||||||
@@ -10,12 +10,7 @@
|
|||||||
<p>
|
<p>
|
||||||
<%= @fetprofile.fetmail %>
|
<%= @fetprofile.fetmail %>
|
||||||
</p>
|
</p>
|
||||||
respond_to do |format|
|
<p>
|
||||||
format.html # index.html.erb
|
|
||||||
format.json { render json: @fetprofiles }
|
|
||||||
end
|
|
||||||
|
|
||||||
<p>
|
|
||||||
<%= @fetprofile.desc %>
|
<%= @fetprofile.desc %>
|
||||||
</p>
|
</p>
|
||||||
<%= render partial: "interninfo", object: @fetprofile if can?(:seeintern, @fetprofile) %>
|
<%= render partial: "interninfo", object: @fetprofile if can?(:seeintern, @fetprofile) %>
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
<h1><%= I18n.t('fotos.galleries')%></h1>
|
<h1><%= I18n.t('fotos.galleries')%></h1>
|
||||||
|
<%= render :partial => 'layouts/pretty_toolbar' %>
|
||||||
<% @galleries.each_slice(2) do |row| %>
|
<% @galleries.each_slice(2) do |row| %>
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
<% row.each do |gallery| %>
|
<% row.each do |gallery| %>
|
||||||
@@ -37,4 +38,3 @@
|
|||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<br />
|
<br />
|
||||||
<%= render :partial => 'layouts/pretty_toolbar' %>
|
|
||||||
|
|||||||
@@ -1,17 +1,12 @@
|
|||||||
<div class="contentbox">
|
<div class="contentbox">
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
|
|
||||||
<div class="span8">
|
<div class="span8">
|
||||||
<h4>Neueste Beispiele in unserer Sammlung</h4>
|
<h4>I18n.t("home.newexamples")</h4>
|
||||||
</div>
|
</div>
|
||||||
<div class="span4">
|
<div class="span4">
|
||||||
<%= link_to I18n.t("beispiel.add"), new_beispiel_path, :class=>"btn"%>
|
<%= link_to I18n.t("beispiel.add"), new_beispiel_path, :class=>"btn"%>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="unstyled linkbox-list">
|
<ul class="unstyled linkbox-list">
|
||||||
<% @beispiele.each do |b| %>
|
<% @beispiele.each do |b| %>
|
||||||
<li>
|
<li>
|
||||||
|
|||||||
@@ -1,31 +0,0 @@
|
|||||||
<h1>Entwicklungsprojekt</h1>
|
|
||||||
<%= link_to "notimplemented", home_linksnotimplemented_path %>
|
|
||||||
<h2>Feature List: 2013-07-17</h2>
|
|
||||||
<ul>
|
|
||||||
<li>Info zu Studien/Studienpläne</li>
|
|
||||||
<li>Info zu LVAs</li>
|
|
||||||
<li>Beispielsammlung</li>
|
|
||||||
<li>Kalender</li>
|
|
||||||
<li>Events</li>
|
|
||||||
<li>Termine</li>
|
|
||||||
<li>Fotos</li>
|
|
||||||
<li>FET Mitarbeiter</li>
|
|
||||||
<li>Personen Profile (TISS?)</li>
|
|
||||||
<li>News</li>
|
|
||||||
<li>Gremien - Mitgliedschaften</li>
|
|
||||||
<li>Börse (JOBs) Sitzungsbeschluss:Derzeit Nein</li>
|
|
||||||
<li>Lost&Found </li>
|
|
||||||
<li>FAQ</li>
|
|
||||||
<li>Informationen (ZB Auslandssemester, Anfänerinfo</li>
|
|
||||||
<li>Impressum</li>
|
|
||||||
<li>Linksammlung</li>
|
|
||||||
<li>Fetzn</li>
|
|
||||||
<li>FET Sitzungstops</li>
|
|
||||||
</ul>
|
|
||||||
<h2>Testfeatures</h2>
|
|
||||||
<b>Neuigkeiten</b>
|
|
||||||
<p>Wichtige Punkte die noch entwickelt werden sind: <ul><li>Verwaltung bestehender Nachrichten</li><li>Facebook Interface</li></ul></p>
|
|
||||||
<p><%= link_to "Neuigkeiten", rubriken_path %></p>
|
|
||||||
|
|
||||||
<p><b>Wiki</b></p>
|
|
||||||
<p></p>
|
|
||||||
@@ -23,14 +23,11 @@
|
|||||||
<p><%= link_to "Steuerelemente und Komponenten", "http://getbootstrap.com/2.3.2/index.html" %></p>
|
<p><%= link_to "Steuerelemente und Komponenten", "http://getbootstrap.com/2.3.2/index.html" %></p>
|
||||||
<p>Um bei der Entwicklung mitzuhelfen braucht nur Ruby on Rails installiert werden</p>
|
<p>Um bei der Entwicklung mitzuhelfen braucht nur Ruby on Rails installiert werden</p>
|
||||||
<p><%= link_to "Getting Started" , startdev_home_index_path %></p>
|
<p><%= link_to "Getting Started" , startdev_home_index_path %></p>
|
||||||
<p> Das Kalender Feature wird überarbeitet, in Zukunft soll folgender Link nicht mehr funktionieren <%= link_to "Kalender", calendars_path %>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<%= link_to "Entwicklungsstatus" , dev_home_index_path %>
|
<%= link_to "Entwicklungsstatus" , dev_home_index_path %>
|
||||||
<%= render 'beispiele' %>
|
<%= render 'beispiele' %>
|
||||||
|
|
||||||
Verschiedene Styles
|
<%= I18n.t("home.selectstyle") %>
|
||||||
<ul>
|
<ul>
|
||||||
<li> <%= link_to "Darkblue", home_index_path({:theme=>"darkblue"}) %></li>
|
<li> <%= link_to "Darkblue", home_index_path({:theme=>"darkblue"}) %></li>
|
||||||
<li> <%= link_to "Blue1", home_index_path({:theme=>"blue1"}) %></li>
|
<li> <%= link_to "Blue1", home_index_path({:theme=>"blue1"}) %></li>
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
<div class="content-column content-wrap">
|
<div class="content-column content-wrap">
|
||||||
<h1>Kontakt</h1>
|
<h1> <%= I18n.t "kontakt.H1" %></h1>
|
||||||
<p>
|
<p>
|
||||||
<%= I18n.t "home.kontakt" %>
|
<%= I18n.t "kontakt.text" %>
|
||||||
</p>
|
</p>
|
||||||
<h2>Service</h2>
|
<h2><%= I18n.t "kontakt.service" %></h2>
|
||||||
|
<%= raw(I18n.t( "kontakt.service_text")) %>
|
||||||
|
<h2><%= I18n.t "kontakt.adresse" %></h2>
|
||||||
|
<p><%= raw(I18n.t("kontakt.adresse_text")) %></p>
|
||||||
|
<p><%= raw(I18n.t ("kontakt.telefon_text")) %></p>
|
||||||
|
|
||||||
<h2>Impressum</h2>
|
|
||||||
<h2>Credits</h2>
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ Verwendung: Aufruf mit
|
|||||||
|
|
||||||
-->
|
-->
|
||||||
<% toolbar_elements = !pretty_toolbar.nil? ? pretty_toolbar : @toolbar_elements %>
|
<% toolbar_elements = !pretty_toolbar.nil? ? pretty_toolbar : @toolbar_elements %>
|
||||||
|
<% unless toolbar_elements.nil? || toolbar_elements.empty? %>
|
||||||
<span class="label"><%= I18n.t("common.actions")%></span>
|
<span class="label"><%= I18n.t("common.actions")%></span>
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<% toolbar_elements.each do |t| %>
|
<% toolbar_elements.each do |t| %>
|
||||||
@@ -14,10 +15,10 @@ Verwendung: Aufruf mit
|
|||||||
<% else %>
|
<% else %>
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
|
<a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
|
||||||
Versionen<span class="caret"></span>
|
<%= I18n.t("common.versions") %><span class="caret"></span>
|
||||||
</a>
|
</a>
|
||||||
<ul class="dropdown-menu">
|
<ul class="dropdown-menu">
|
||||||
<li> <%= link_to "active", t[:path] %>
|
<li> <%= link_to I18n.t("common.activeversion"), t[:path] %>
|
||||||
</li>
|
</li>
|
||||||
<% t[:versions].each_with_index do |v,i| %>
|
<% t[:versions].each_with_index do |v,i| %>
|
||||||
<li>
|
<li>
|
||||||
@@ -37,3 +38,4 @@ Verwendung: Aufruf mit
|
|||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
<% end %>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
<%= membership.stop.nil? ? "seit " : "von " %>
|
<%= membership.stop.nil? ? I18n.t("gremium.seit")+" " : I18n.t("gremium.von")+" " %>
|
||||||
<%=membership.start.to_s %>
|
<%=membership.start.to_s %>
|
||||||
<%= " bis "+membership.stop.to_s unless membership.stop.nil? %>
|
<%= " "+I18n.t("gremium.bis")+" "+membership.stop.to_s unless membership.stop.nil? %>
|
||||||
<%= Membership::TYPEN_g[membership.fetprofile.geschlecht.to_i][membership.typ.to_i] %>
|
<%= Membership::TYPEN_g[membership.fetprofile.geschlecht.to_i][membership.typ.to_i] %>
|
||||||
<%= membership.gremium.fall2 %>
|
<%= membership.gremium.fall2 %>
|
||||||
|
|||||||
@@ -1,10 +1,8 @@
|
|||||||
<h1><%= I18n.t("modulgruppe.show.title")%></h1>
|
<h1><%= I18n.t("modulgruppe.show.title")%></h1>
|
||||||
|
|
||||||
|
|
||||||
<% @modulgruppen.sort_by{|n| n[:name]}.each do |modulgruppe| %>
|
<% @modulgruppen.sort_by{|n| n[:name]}.each do |modulgruppe| %>
|
||||||
<%= render modulgruppe%>
|
<%= render modulgruppe%>
|
||||||
<% end %>
|
<% end %>
|
||||||
<br>
|
<br>
|
||||||
<% if !@studium.nil? %>
|
<% if !@studium.nil? %>
|
||||||
<%= link_to 'New Modulgruppe', new_studium_modulgruppe_path(@studium) %>
|
<%= link_to I18n.t("modulgruppe.new"), new_studium_modulgruppe_path(@studium) if can? :new, Modulgruppe %>
|
||||||
<% end%>
|
<% end%>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<div class="media-body">
|
<div class="media-body">
|
||||||
<div>
|
<div>
|
||||||
<small><%= neuigkeit.rubrik.name %></small>
|
<small><%= neuigkeit.rubrik.name %></small>
|
||||||
<small class="pull-right"> <%= "am "+ I18n.l(neuigkeit.try(:datum).try(:to_date)) unless neuigkeit.try(:datum).try(:to_date).nil? %></small>
|
<small class="pull-right"> <%= I18n.t("neuigkeit.am")+" "+ I18n.l(neuigkeit.try(:datum).try(:to_date)) unless neuigkeit.try(:datum).try(:to_date).nil? %></small>
|
||||||
</div>
|
</div>
|
||||||
<h1>
|
<h1>
|
||||||
<%= neuigkeit.title%>
|
<%= neuigkeit.title%>
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<li>
|
<li>
|
||||||
<%= link_to nlink_list.link do %>
|
<%= link_to nlink_list.link do %>
|
||||||
<div class="contentbox" >
|
<div class="contentbox" >
|
||||||
<% p = nlink_list.link_type.downcase.pluralize+"/nlink" %>
|
<% p = nlink_list.link_type.downcase.pluralize+"/nlink" %>
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<span class="pull-right">
|
<span class="pull-right">
|
||||||
<%= @neuigkeit.author.email.to_s unless @neuigkeit.try(:author).try(:email).to_s %>
|
<%= @neuigkeit.author.email.to_s unless @neuigkeit.try(:author).try(:email).to_s %>
|
||||||
<%= @neuigkeit.author.text+ " am " + I18n.l(@neuigkeit.try(:datum).try(:to_date)) unless @neuigkeit.try(:datum).try(:to_date).nil? %>
|
<%= @neuigkeit.author.text+ " "+ I18n.t("neuigkeit.am")+" " + I18n.l(@neuigkeit.try(:datum).try(:to_date)) unless @neuigkeit.try(:datum).try(:to_date).nil? %>
|
||||||
</span>
|
</span>
|
||||||
<div class="media">
|
<div class="media">
|
||||||
<div class="pull-left" href="#">
|
<div class="pull-left" href="#">
|
||||||
@@ -17,7 +17,6 @@
|
|||||||
<div class="media-body">
|
<div class="media-body">
|
||||||
<h1>
|
<h1>
|
||||||
<%= @neuigkeit.title%>
|
<%= @neuigkeit.title%>
|
||||||
|
|
||||||
</h1>
|
</h1>
|
||||||
<%= raw(@neuigkeit.text) %>
|
<%= raw(@neuigkeit.text) %>
|
||||||
<p></p>
|
<p></p>
|
||||||
@@ -29,7 +28,7 @@
|
|||||||
<%= render 'layouts/pretty_toolbar', :object=> @toolbar_elements %>
|
<%= render 'layouts/pretty_toolbar', :object=> @toolbar_elements %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
Siehe auch:
|
<%= I18n.t("neuigekeit.sieheauch") %>
|
||||||
<ul class="unstyled">
|
<ul class="unstyled">
|
||||||
<div id="nlink_list">
|
<div id="nlink_list">
|
||||||
<%= render partial: "nlink_list", collection: @neuigkeit.nlinks %>
|
<%= render partial: "nlink_list", collection: @neuigkeit.nlinks %>
|
||||||
@@ -38,9 +37,9 @@ Siehe auch:
|
|||||||
<%= render partial: "nlink_list_search", collection: @nlink_search %>
|
<%= render partial: "nlink_list_search", collection: @nlink_search %>
|
||||||
</div>
|
</div>
|
||||||
</ul>
|
</ul>
|
||||||
|
<% if can? :find_link, @neuigkeit %>
|
||||||
<%= semantic_form_for :find_link, :url=>find_link_rubrik_neuigkeit_path(@rubrik,@neuigkeit), :html=>{:id=>"search_form", :method=>'get'} do |f| %>
|
<%= semantic_form_for :find_link, :url=>find_link_rubrik_neuigkeit_path(@rubrik,@neuigkeit), :html=>{:id=>"search_form", :method=>'get'} do |f| %>
|
||||||
<%= f.input :query, :input_html => { :name => 'query' },:label=>false %>
|
<%= f.input :query, :input_html => { :name => 'query' },:label=>false %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
<% else %>
|
<% else %>
|
||||||
<li class="pull-right">
|
<li class="pull-right">
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= link_to "Verwaltung", verwalten_rubriken_path %>
|
<%= link_to I18n.t("rubrik.management"), verwalten_rubriken_path if can? :verwalten, Rubrik %>
|
||||||
</li>
|
</li>
|
||||||
<% end %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
17
app/views/semesters/_semester.html.erb
Normal file
17
app/views/semesters/_semester.html.erb
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
<div class="contentbox">
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row-fluid">
|
||||||
|
<div class="span8">
|
||||||
|
<h2><%= semester.name %></h2>
|
||||||
|
</div>
|
||||||
|
<div class="span4">
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<% semester.lvas.each do |lva| %>
|
||||||
|
<div class="row-fluid">
|
||||||
|
<%= render :partial=>'lvas/lva_semester', :locals =>{:lva => lva}%>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
@@ -1,34 +1,19 @@
|
|||||||
|
|
||||||
|
<% if params[:info].true? %>
|
||||||
|
<%= raw(@studium.desc) %>
|
||||||
|
<% else %>
|
||||||
|
<%= @studium.desc_first_words %> <%= link_to I18n.t('studium.info'), studium_path(@studium, :ansicht=>params[:ansicht], :info=>true) %>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
<div class="container-fluid">
|
<div class="container-fluid">
|
||||||
<% if params[:info].true? %>
|
<% @studium.semester.each_slice(2) do |row| %>
|
||||||
<%= raw(@studium.desc) %>
|
<div class="row-fluid">
|
||||||
<% else %>
|
<% row.each do |sem| %>
|
||||||
<%= @studium.desc_first_words %> <%= link_to I18n.t('studium.info'), studium_path(@studium, :ansicht=>params[:ansicht], :info=>true) %>
|
<div class="span6">
|
||||||
<% end %>
|
<%= render sem %>
|
||||||
|
|
||||||
<% @studium.semester.each do |sem| %>
|
|
||||||
<div class="row-fluid">
|
|
||||||
<div class="span12">
|
|
||||||
<div class="contentbox">
|
|
||||||
<div class="container-fluid">
|
|
||||||
<div class="row-fluid">
|
|
||||||
<div class="span8">
|
|
||||||
<h2><%= sem.name %></h2>
|
|
||||||
</div>
|
|
||||||
<div class="span4">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<% sem.lvas.each do |lva| %>
|
|
||||||
<div class="row-fluid">
|
|
||||||
<%= render :partial=>'lvas/lva_semester', :locals =>{:lva => lva}%>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
</div>
|
||||||
<%= render :partial=>'layouts/pretty_toolbar', :locals=>{:elements=>@toolbar_elements} %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
<%= render :partial=>'layouts/pretty_toolbar', :locals=>{:elements=>@toolbar_elements} %>
|
||||||
|
|||||||
@@ -20,6 +20,6 @@
|
|||||||
<% else %>
|
<% else %>
|
||||||
<li class="pull-right">
|
<li class="pull-right">
|
||||||
<% end %>
|
<% end %>
|
||||||
<%= link_to I18n.t("studien.verwaltung.title"), studien_verwalten_path %>
|
<%= link_to I18n.t("studien.verwaltung.title"), studien_verwalten_path if can? :verwalten, Studium %>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|||||||
@@ -1,52 +0,0 @@
|
|||||||
|
|
||||||
<div class="container-fluid">
|
|
||||||
<div class="row-fluid">
|
|
||||||
<%= render 'studien/tabs' %>
|
|
||||||
<div class="span6">
|
|
||||||
<h1><%= @studium.typ %> <%= @studium.name %> (<%= @studium.zahl %>)</h1>
|
|
||||||
</div>
|
|
||||||
<div class="span3 pull-right">
|
|
||||||
<div class="pull-right">
|
|
||||||
<%= link_to @text, studium_path(@studium, :ansicht=>@flip), :class=>"btn" %>
|
|
||||||
<%= link_to "Infoansicht", studium_path(@studium, :ansicht=>'infoansicht'), :class=>"btn" unless params[:ansicht]=='infoansicht'%>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<% if params[:info].true? %>
|
|
||||||
<%= raw(@studium.desc) %>
|
|
||||||
<% else %>
|
|
||||||
<%= @studium.desc_first_words %> <%= link_to I18n.t('studium.info'), studium_path(@studium, :ansicht=>params[:ansicht], :info=>true) %>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<% @studium.semester.each do |sem| %>
|
|
||||||
<div class="row-fluid">
|
|
||||||
<div class="span12">
|
|
||||||
<div class="contentbox">
|
|
||||||
<div class="container-fluid">
|
|
||||||
<div class="row-fluid">
|
|
||||||
|
|
||||||
<div class="span8">
|
|
||||||
<h2><%= sem.name %></h2>
|
|
||||||
</div>
|
|
||||||
<div class="span4">
|
|
||||||
<div class="pull-right"><!--<% link_to I18n.t("lva.addrem"), edit_semester_path(sem), :class=>"btn-small"%>--></div>
|
|
||||||
</div></div>
|
|
||||||
<% sem.lvas.each do |lva| %>
|
|
||||||
<div class="row-fluid">
|
|
||||||
|
|
||||||
|
|
||||||
<%= render :partial=>'lvas/lva_semester', :locals =>{:lva => lva}%>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<% end %>
|
|
||||||
|
|
||||||
<%= render :partial=>'layouts/pretty_toolbar', :locals=>{:elements=>@toolbar_elements} %>
|
|
||||||
</div>
|
|
||||||
@@ -2,6 +2,7 @@
|
|||||||
<div class="content-wrap content-column">
|
<div class="content-wrap content-column">
|
||||||
<p id="notice"><%= notice %></p>
|
<p id="notice"><%= notice %></p>
|
||||||
<h1><%= @studium.typ %> <%= @studium.name %> (<%= @studium.zahl %>)</h1>
|
<h1><%= @studium.typ %> <%= @studium.name %> (<%= @studium.zahl %>)</h1>
|
||||||
|
<div>
|
||||||
<p>
|
<p>
|
||||||
<div class="pull-right">
|
<div class="pull-right">
|
||||||
<%= link_to I18n.t("studien.ansicht.semester"), studium_path(@studium, :ansicht=>"semesteransicht"), :class=>"btn" unless params[:ansicht]=='semesteransicht' %>
|
<%= link_to I18n.t("studien.ansicht.semester"), studium_path(@studium, :ansicht=>"semesteransicht"), :class=>"btn" unless params[:ansicht]=='semesteransicht' %>
|
||||||
@@ -9,6 +10,7 @@
|
|||||||
<%= link_to I18n.t("studien.ansicht.info"), studium_path(@studium, :ansicht=>"infoansicht"), :class=>"btn" unless params[:ansicht]=='infoansicht' %>
|
<%= link_to I18n.t("studien.ansicht.info"), studium_path(@studium, :ansicht=>"infoansicht"), :class=>"btn" unless params[:ansicht]=='infoansicht' %>
|
||||||
</div>
|
</div>
|
||||||
</p>
|
</p>
|
||||||
|
</div>
|
||||||
<% if params[:ansicht]=='modulgruppenansicht' %>
|
<% if params[:ansicht]=='modulgruppenansicht' %>
|
||||||
<%= render partial: 'modulgruppenansicht' %>
|
<%= render partial: 'modulgruppenansicht' %>
|
||||||
<% else if params[:ansicht]=='infoansicht' %>
|
<% else if params[:ansicht]=='infoansicht' %>
|
||||||
|
|||||||
@@ -1,4 +1,8 @@
|
|||||||
<% verw_liste.each do |thema| %>
|
<% verw_liste.each do |thema| %>
|
||||||
<li id="themen_<%= thema.id %>" class="sort" ><div class="contentbox handle" ><h2><%= thema.title %></h2> </div>
|
<li id="themen_<%= thema.id %>" class="sort" ><div class="contentbox handle" ><b><%= thema.title %></b> </div>
|
||||||
<%= link_to thema_path(thema),:remote=>true do %> Show <% end %> <%= link_to edit_thema_path(thema),:remote=>true do %> Edit <% end %> <%= link_to fragen_thema_path(thema),:remote=>true do %> Fragen <% end %><%= link_to attachments_thema_path(thema),:remote=>true do %> Attachments <% end %></li>
|
|
||||||
|
<%= link_to thema_path(thema),:remote=>true do %> Show <% end %>
|
||||||
|
<%= link_to edit_thema_path(thema),:remote=>true do %> Edit <% end %>
|
||||||
|
<%= link_to fragen_thema_path(thema),:remote=>true do %> Fragen <% end %>
|
||||||
|
<%= link_to attachments_thema_path(thema),:remote=>true do %> Attachments <% end %></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
# Sample localization file for English. Add more files in this directory for other locales.
|
|
||||||
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
|
|
||||||
de:
|
de:
|
||||||
ohnezuordnung: "Ohne Zuordnung"
|
ohnezuordnung: "Ohne Zuordnung"
|
||||||
hello: "Hallo Welt"
|
hello: "Hallo Welt"
|
||||||
@@ -10,6 +9,11 @@ de:
|
|||||||
delete: "Löschen"
|
delete: "Löschen"
|
||||||
verwalten: "Verwalten"
|
verwalten: "Verwalten"
|
||||||
sure_del: "Sicher endgültig löschen?"
|
sure_del: "Sicher endgültig löschen?"
|
||||||
|
versions: "Versionen"
|
||||||
|
activeversion: "Akutelle Version"
|
||||||
|
cancel: "Abbrechen"
|
||||||
|
save: "Speichern"
|
||||||
|
savecont: "Zwischenspeichern"
|
||||||
home:
|
home:
|
||||||
sprache: "Deutsch"
|
sprache: "Deutsch"
|
||||||
kontakt: "Kontakt"
|
kontakt: "Kontakt"
|
||||||
@@ -24,68 +28,16 @@ de:
|
|||||||
mitarbeiter: "Mitarbeiter"
|
mitarbeiter: "Mitarbeiter"
|
||||||
fotos: "Fotos"
|
fotos: "Fotos"
|
||||||
search: "Suche"
|
search: "Suche"
|
||||||
|
newexamples: "Neueste Beispiele in unserer Sammlung"
|
||||||
formtastic:
|
selectstyle: "Wähle dein Design"
|
||||||
titles:
|
|
||||||
modul:
|
|
||||||
title: "Modul Details"
|
|
||||||
edit: "Modul Details"
|
|
||||||
hints:
|
|
||||||
modul:
|
|
||||||
name: "Name des Moduls"
|
|
||||||
labels:
|
|
||||||
modul:
|
|
||||||
name: "Name"
|
|
||||||
desc: "Beschreibung"
|
|
||||||
depend: "Voraussetzungen"
|
|
||||||
activerecord:
|
|
||||||
errors:
|
|
||||||
models:
|
|
||||||
modulgruppe:
|
|
||||||
attributes:
|
|
||||||
studium_id:
|
|
||||||
blank: "Bitte wählen Sie ein Studium aus"
|
|
||||||
typ:
|
|
||||||
inclusion: "Bitte wählen Sie einen Typ aus"
|
|
||||||
phase:
|
|
||||||
not_a_number: "Die Phase muss eine Nummer sein"
|
|
||||||
inclusion: "Bitte wählen sie eine gültige Zahl für die Phase"
|
|
||||||
name:
|
|
||||||
blank: "Bitte geben sie einen Namen ein"
|
|
||||||
taken: "Der Name ist schon vergeben (Hier ist ein Bug)"
|
|
||||||
lva:
|
|
||||||
attributes:
|
|
||||||
modul:
|
|
||||||
blank: "Lva muss zumindest einem Modul zugewiesen sein"
|
|
||||||
name:
|
|
||||||
blank: "Die Lva muss einen Namen haben"
|
|
||||||
ects:
|
|
||||||
blank: "Es müssen ECTS eingetragen sein"
|
|
||||||
stunden:
|
|
||||||
blank: "Es muss die Studenanzahl eingettragen sein"
|
|
||||||
lvanr:
|
|
||||||
invalid: "Die Nummer muss im Format 000.000 eingegeben sein"
|
|
||||||
blank: "Geben sie eine Lva-Nr an"
|
|
||||||
taken: "Die Lva-Nummer ist vergeben"
|
|
||||||
typ:
|
|
||||||
blank: "Es muss ein Lva-Typ angegeben sein"
|
|
||||||
inclusion: "Der Typ ist nicht aus der Auswahl der gültigen Typen"
|
|
||||||
|
|
||||||
studium:
|
|
||||||
attributes:
|
|
||||||
zahl:
|
|
||||||
blank: "Geben Sie die Studienkennzahl an"
|
|
||||||
invalid: "Die eingegebene Form stimmt nicht. (4-10 Zeichen, Ziffern und Großbuchstaben"
|
|
||||||
taken: "Die Kennzahl wird bereits verwendet"
|
|
||||||
name:
|
|
||||||
blank: "Geben Sie den Namen des Studiums ein"
|
|
||||||
taken: "Der Name ist bereits vergeben"
|
|
||||||
typ:
|
|
||||||
inclusion: 'Wählen Sie "Bachelor" oder "Master" aus'
|
|
||||||
modul:
|
|
||||||
attributes:
|
|
||||||
modulgruppen:
|
|
||||||
blank: "Wählen Sie zumindest eine Modulgruppe aus"
|
|
||||||
support:
|
support:
|
||||||
array:
|
array:
|
||||||
two_words_connector: ', '
|
two_words_connector: ', '
|
||||||
|
kontakt:
|
||||||
|
H1: "Kontakt"
|
||||||
|
text: "Du kannst uns telefonisch, E-Mail, Skype und persönlich erreichen."
|
||||||
|
service: "Service"
|
||||||
|
adresse: "Adresse"
|
||||||
|
adresse_text: "Gußhausstraße 25-27<br>1220 Wien"
|
||||||
|
service_text: "Für individuelle Beratung und alle sonstigen Angelegenheiten stehen wir mit unserem Servicedienst während der Vorlesungszeit jenen <b>Mo-Fr von 9 bis 15 Uhr</b> zur Verfügung. Außerhalb dieser Zeiten ist oft trotzdem jemand auf der Fachschaft der dir weiterhelfen kann."
|
||||||
|
telefon_text: "Telefon: +43 2241341 <br> Skype: <br><b>E-Mail: service@fet.at</b>"
|
||||||
@@ -1,8 +1,7 @@
|
|||||||
# Sample localization file for English. Add more files in this directory for other locales.
|
|
||||||
# See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
|
|
||||||
en:
|
|
||||||
hello: "Hello world"
|
|
||||||
|
|
||||||
|
en:
|
||||||
|
ohnezuordnung: "Without x"
|
||||||
|
hello: "Hello World"
|
||||||
common:
|
common:
|
||||||
back: "Back"
|
back: "Back"
|
||||||
edit: "Edit"
|
edit: "Edit"
|
||||||
@@ -10,11 +9,12 @@ en:
|
|||||||
delete: "Delete"
|
delete: "Delete"
|
||||||
verwalten: "Manage"
|
verwalten: "Manage"
|
||||||
sure_del: "Are you sure you want to delete this?"
|
sure_del: "Are you sure you want to delete this?"
|
||||||
|
|
||||||
home:
|
home:
|
||||||
sprache: "English"
|
sprache: "English"
|
||||||
kontakt: "Contact"
|
kontakt: "Contact"
|
||||||
mtitle: "Menu"
|
mtitle: "Menu"
|
||||||
|
login: "FET Login"
|
||||||
|
willkommen: "Welcome at Fachschaft Elektrotechnik"
|
||||||
hallobeiderfet: "This is the page of Fachschaft Elektrotechnik at TU Wien"
|
hallobeiderfet: "This is the page of Fachschaft Elektrotechnik at TU Wien"
|
||||||
home: "Home"
|
home: "Home"
|
||||||
studien: "Studies"
|
studien: "Studies"
|
||||||
@@ -23,4 +23,6 @@ en:
|
|||||||
mitarbeiter: "Members"
|
mitarbeiter: "Members"
|
||||||
fotos: "Fotos"
|
fotos: "Fotos"
|
||||||
search: "Search"
|
search: "Search"
|
||||||
willkommen: "Welcome at Fachschaft Elektrotechnik"
|
newexamples: "Newest examples in our collection"
|
||||||
|
selectstyle: "Choose a style"
|
||||||
|
|
||||||
|
|||||||
@@ -1,14 +1,32 @@
|
|||||||
|
# -------------- interne Strings ---------
|
||||||
de:
|
de:
|
||||||
profile:
|
fetprofile:
|
||||||
remove_picture: "Bild entfernen"
|
edit: "Profil bearbeiten"
|
||||||
all_members: "Alle Mitglieder"
|
geburtstag: "Geburtstag"
|
||||||
all_groups: "Alle Gremien und Gruppen"
|
adresse: "Adresse"
|
||||||
active_members: "Aktive Mitglieder"
|
formtastic:
|
||||||
notactive_members: "Pension"
|
labels:
|
||||||
new_profile: "Neues Profil anlegen"
|
fetprofile:
|
||||||
gremium:
|
birth_day: "Tag"
|
||||||
new: "Neues Gremium"
|
birth_month: "Monat"
|
||||||
filter:
|
birth_year: "Jahr"
|
||||||
berufung:
|
geschlecht: "Geschlecht"
|
||||||
title: "Berufungskommission"
|
hdynr: "Handynummer"
|
||||||
text: "B.."
|
telnr: "Telefonnummer"
|
||||||
|
skype: "Skype"
|
||||||
|
instant: "anderer Instantmessanger"
|
||||||
|
city: "Stadt"
|
||||||
|
street: "Straße"
|
||||||
|
plz: "PLZ"
|
||||||
|
picture: "Portraitfoto"
|
||||||
|
vorname: "Vorname"
|
||||||
|
nachname: "Nachname"
|
||||||
|
short: "Spitzname"
|
||||||
|
fetmailalias: "Spitzname bei Mailadresse"
|
||||||
|
desc: "Beschreibungstext"
|
||||||
|
active: "AktiveR MitarbeiterIn"
|
||||||
|
membership:
|
||||||
|
start: "Beginn"
|
||||||
|
stop: "Ende"
|
||||||
|
type: "Typ"
|
||||||
|
|
||||||
20
config/locales/fetprofile_public.de.yml
Normal file
20
config/locales/fetprofile_public.de.yml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
de:
|
||||||
|
profile:
|
||||||
|
remove_picture: "Bild entfernen"
|
||||||
|
all_members: "Alle Mitglieder"
|
||||||
|
all_groups: "Alle Gremien und Gruppen"
|
||||||
|
active_members: "Aktive Mitglieder"
|
||||||
|
notactive_members: "Pension"
|
||||||
|
new_profile: "Neues Profil anlegen"
|
||||||
|
gremium:
|
||||||
|
new: "Neues Gremium"
|
||||||
|
seit: "seit"
|
||||||
|
von: "von"
|
||||||
|
bis: "bis"
|
||||||
|
filter:
|
||||||
|
berufung:
|
||||||
|
title: "Berufungskommission"
|
||||||
|
text: "B.."
|
||||||
|
habil:
|
||||||
|
title: "Habilitationskommission"
|
||||||
|
text: "Die Habilitation ist die Verleihung der Lehrbefugnis an einer Universität. Die Habilitation ist mit dem Abfassen einer Habilitationsschrift ähnlich einer Dissertation verbunden. Außerdem werden die didaktischen Fähigkeiten und die sonstige wissenschaftliche Laufbahn beurteilt."
|
||||||
@@ -1,20 +1,29 @@
|
|||||||
|
|
||||||
de:
|
de:
|
||||||
|
# -------- Interne Strings ---------
|
||||||
neuigkeit:
|
neuigkeit:
|
||||||
publish: "Neuigkeit veröffentlichen"
|
publish: "Neuigkeit veröffentlichen"
|
||||||
|
publishfb: "Neuigkeit auf Facebook veröffentlichen"
|
||||||
republish: "Neuigkeit erneut veröffentlichen"
|
republish: "Neuigkeit erneut veröffentlichen"
|
||||||
unpublish: "Veröffentlichung rückgängig"
|
unpublish: "Veröffentlichung rückgängig"
|
||||||
new:
|
new:
|
||||||
title: "Neuer Artikel"
|
title: "Neuer Artikel"
|
||||||
rubriken:
|
|
||||||
alle: "Alle Rubriken"
|
|
||||||
rubrik:
|
rubrik:
|
||||||
title: "Neuigkeiten und aktuelle Infos"
|
|
||||||
moderatoradded: "Neuen Moderator hinzugefügt!"
|
moderatoradded: "Neuen Moderator hinzugefügt!"
|
||||||
moderatoraddnorights: "Keine Berechtigung neue Moderatoren hinzuzufügen!"
|
moderatoraddnorights: "Keine Berechtigung neue Moderatoren hinzuzufügen!"
|
||||||
new: "Neue Rubrik"
|
new: "Neue Rubrik"
|
||||||
edit: "Rubrik bearbeiten"
|
edit: "Rubrik bearbeiten"
|
||||||
|
management: "Verwaltung"
|
||||||
|
formtastic:
|
||||||
|
labels:
|
||||||
|
neuigkeit:
|
||||||
|
text: "Text"
|
||||||
|
title: "Überschrift"
|
||||||
|
author: "Author"
|
||||||
|
picture: "Bild"
|
||||||
|
calentry:
|
||||||
|
start: "Beginn"
|
||||||
|
dauer: "Dauer"
|
||||||
activerecord:
|
activerecord:
|
||||||
errors:
|
errors:
|
||||||
models:
|
models:
|
||||||
|
|||||||
10
config/locales/neuigkeiten_public.de.yml
Normal file
10
config/locales/neuigkeiten_public.de.yml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
de:
|
||||||
|
neuigkeit:
|
||||||
|
am: "am"
|
||||||
|
sieheauch: "Siehe auch"
|
||||||
|
rubriken:
|
||||||
|
alle: "Alle Rubriken"
|
||||||
|
cal:
|
||||||
|
bis: "bis"
|
||||||
|
rubrik:
|
||||||
|
title: "Neuigkeiten und aktuelle Infos"
|
||||||
10
config/locales/neuigkeiten_public.en.yml
Normal file
10
config/locales/neuigkeiten_public.en.yml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
en:
|
||||||
|
neuigkeit:
|
||||||
|
am: "on"
|
||||||
|
sieheauch: "Stuff that could interest you"
|
||||||
|
rubriken:
|
||||||
|
alle: "All Rubrics"
|
||||||
|
cal:
|
||||||
|
bis: "to"
|
||||||
|
rubrik:
|
||||||
|
title: "News and current information"
|
||||||
@@ -1,23 +1,13 @@
|
|||||||
|
|
||||||
|
# --------------- interne Strings
|
||||||
de:
|
de:
|
||||||
studien:
|
studien:
|
||||||
desc: "Beschreibung"
|
|
||||||
studien: "Studien"
|
|
||||||
list: "Studien der Fakultät Elektrotechnik"
|
|
||||||
anzeigen: "Studium anzeigen"
|
|
||||||
new: "Neues Studium"
|
|
||||||
allestudien: "Alle Studien"
|
|
||||||
loeschen: "Dieses Studium löschen"
|
|
||||||
edit: "Studium bearbeiten"
|
|
||||||
verwaltung:
|
verwaltung:
|
||||||
title: "Studien verwalten"
|
title: "Studien verwalten"
|
||||||
explanation: "<ul>
|
explanation: "<ul>
|
||||||
<li>Klick auf den Namen eines Objektes führt zu dessen Ansicht, ein Klick auf edit direkt zum Bearbeitungsformular</li>
|
<li>Klick auf den Namen eines Objektes führt zu dessen Ansicht, ein Klick auf edit direkt zum Bearbeitungsformular</li>
|
||||||
<li>Per Dropdown-Menü kann nach einzelnen Objekten gefiltert werden. Die Filter können kombiniert werden, wobei nur erlaubte Kombinationen möglich sind. <b>Solange validation-Fehler (im Log rot und fett) auftreten, keine Filter verwenden</b></li>
|
<li>Per Dropdown-Menü kann nach einzelnen Objekten gefiltert werden. Die Filter können kombiniert werden, wobei nur erlaubte Kombinationen möglich sind. <b>Solange validation-Fehler (im Log rot und fett) auftreten, keine Filter verwenden</b></li>
|
||||||
</ul>"
|
</ul>"
|
||||||
ansicht:
|
|
||||||
modulgruppe: "Modulgruppenansicht"
|
|
||||||
semester: "Semesteransicht"
|
|
||||||
info: "Infoansicht"
|
|
||||||
modul:
|
modul:
|
||||||
edit: "Modul bearbeiten"
|
edit: "Modul bearbeiten"
|
||||||
list: "Alle Module"
|
list: "Alle Module"
|
||||||
@@ -25,17 +15,10 @@ de:
|
|||||||
lvas: "LVAs"
|
lvas: "LVAs"
|
||||||
mgs: "Modulgruppen"
|
mgs: "Modulgruppen"
|
||||||
desc: "Beschreibung"
|
desc: "Beschreibung"
|
||||||
keine:
|
|
||||||
beschreibung: "Keine Beschreibung vorhanden"
|
|
||||||
beispiel:
|
|
||||||
add: "Beispiel hinzufügen"
|
|
||||||
lva:
|
lva:
|
||||||
add: "Lva hinzufügen"
|
add: "Lva hinzufügen"
|
||||||
addrem: "Lva hinzufügen/entfernen"
|
addrem: "Lva hinzufügen/entfernen"
|
||||||
list: "Alle Lvas"
|
list: "Alle Lvas"
|
||||||
semester:
|
|
||||||
ohne: "Ohne Semesterzuordnung"
|
|
||||||
semester: "Semester"
|
|
||||||
modulgruppe:
|
modulgruppe:
|
||||||
typ: "Typ"
|
typ: "Typ"
|
||||||
edit: "Modulgruppe bearbeiten"
|
edit: "Modulgruppe bearbeiten"
|
||||||
@@ -56,8 +39,65 @@ de:
|
|||||||
verwalten:
|
verwalten:
|
||||||
fehler:
|
fehler:
|
||||||
keine: "Keine Fehlermeldungen oder Warnungen"
|
keine: "Keine Fehlermeldungen oder Warnungen"
|
||||||
lecturers:
|
|
||||||
lecturers: "Vortragende"
|
|
||||||
file:
|
|
||||||
size: "Dateigröße"
|
|
||||||
|
|
||||||
|
formtastic:
|
||||||
|
titles:
|
||||||
|
modul:
|
||||||
|
title: "Modul Details"
|
||||||
|
edit: "Modul Details"
|
||||||
|
hints:
|
||||||
|
modul:
|
||||||
|
name: "Name des Moduls"
|
||||||
|
labels:
|
||||||
|
modul:
|
||||||
|
name: "Name"
|
||||||
|
desc: "Beschreibung"
|
||||||
|
depend: "Voraussetzungen"
|
||||||
|
activerecord:
|
||||||
|
errors:
|
||||||
|
models:
|
||||||
|
modulgruppe:
|
||||||
|
attributes:
|
||||||
|
studium_id:
|
||||||
|
blank: "Bitte wählen Sie ein Studium aus"
|
||||||
|
typ:
|
||||||
|
inclusion: "Bitte wählen Sie einen Typ aus"
|
||||||
|
phase:
|
||||||
|
not_a_number: "Die Phase muss eine Nummer sein"
|
||||||
|
inclusion: "Bitte wählen sie eine gültige Zahl für die Phase"
|
||||||
|
name:
|
||||||
|
blank: "Bitte geben sie einen Namen ein"
|
||||||
|
taken: "Der Name ist schon vergeben (Hier ist ein Bug)"
|
||||||
|
lva:
|
||||||
|
attributes:
|
||||||
|
modul:
|
||||||
|
blank: "Lva muss zumindest einem Modul zugewiesen sein"
|
||||||
|
name:
|
||||||
|
blank: "Die Lva muss einen Namen haben"
|
||||||
|
ects:
|
||||||
|
blank: "Es müssen ECTS eingetragen sein"
|
||||||
|
stunden:
|
||||||
|
blank: "Es muss die Studenanzahl eingettragen sein"
|
||||||
|
lvanr:
|
||||||
|
invalid: "Die Nummer muss im Format 000.000 eingegeben sein"
|
||||||
|
blank: "Geben sie eine Lva-Nr an"
|
||||||
|
taken: "Die Lva-Nummer ist vergeben"
|
||||||
|
typ:
|
||||||
|
blank: "Es muss ein Lva-Typ angegeben sein"
|
||||||
|
inclusion: "Der Typ ist nicht aus der Auswahl der gültigen Typen"
|
||||||
|
|
||||||
|
studium:
|
||||||
|
attributes:
|
||||||
|
zahl:
|
||||||
|
blank: "Geben Sie die Studienkennzahl an"
|
||||||
|
invalid: "Die eingegebene Form stimmt nicht. (4-10 Zeichen, Ziffern und Großbuchstaben"
|
||||||
|
taken: "Die Kennzahl wird bereits verwendet"
|
||||||
|
name:
|
||||||
|
blank: "Geben Sie den Namen des Studiums ein"
|
||||||
|
taken: "Der Name ist bereits vergeben"
|
||||||
|
typ:
|
||||||
|
inclusion: 'Wählen Sie "Bachelor" oder "Master" aus'
|
||||||
|
modul:
|
||||||
|
attributes:
|
||||||
|
modulgruppen:
|
||||||
|
blank: "Wählen Sie zumindest eine Modulgruppe aus"
|
||||||
|
|||||||
25
config/locales/studien_public.de.yml
Normal file
25
config/locales/studien_public.de.yml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
de:
|
||||||
|
studien:
|
||||||
|
desc: "Beschreibung"
|
||||||
|
studien: "Studien"
|
||||||
|
list: "Studien der Fakultät Elektrotechnik"
|
||||||
|
anzeigen: "Studium anzeigen"
|
||||||
|
new: "Neues Studium"
|
||||||
|
allestudien: "Alle Studien"
|
||||||
|
loeschen: "Dieses Studium löschen"
|
||||||
|
edit: "Studium bearbeiten"
|
||||||
|
ansicht:
|
||||||
|
modulgruppe: "Modulgruppenansicht"
|
||||||
|
semester: "Semesteransicht"
|
||||||
|
info: "Infoansicht"
|
||||||
|
keine:
|
||||||
|
beschreibung: "Keine Beschreibung vorhanden"
|
||||||
|
beispiel:
|
||||||
|
add: "Beispiel hinzufügen"
|
||||||
|
lecturers:
|
||||||
|
lecturers: "Vortragende"
|
||||||
|
file:
|
||||||
|
size: "Dateigröße"
|
||||||
|
semester:
|
||||||
|
ohne: "Ohne Semesterzuordnung"
|
||||||
|
semester: "Semester"
|
||||||
Reference in New Issue
Block a user