summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-02-12 12:46:36 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-02-12 12:46:36 +0100
commitaa5a2b806d117ffde9888e282c7100066156d94b (patch)
treee0478799f9fd4942d48163aaf87ba6eb5eaa5ae8
parent422559c91d7be84a7633fdab1d289546e08ea22d (diff)
Misc I18n and GUI improvements.
-rw-r--r--app/views/call_routes/show.html.haml47
-rw-r--r--config/locales/views/call_routes/de.yml24
-rw-r--r--config/locales/views/phones/de.yml6
-rw-r--r--config/locales/views/route_elements/de.yml20
-rw-r--r--config/locales/views/sip_accounts/de.yml4
5 files changed, 54 insertions, 47 deletions
diff --git a/app/views/call_routes/show.html.haml b/app/views/call_routes/show.html.haml
index a33a29b..998558e 100644
--- a/app/views/call_routes/show.html.haml
+++ b/app/views/call_routes/show.html.haml
@@ -1,26 +1,33 @@
- content_for :title, t("call_routes.show.page_title")
-%p
- %strong= t('call_routes.show.position') + ":"
- = @call_route.position
-%p
- %strong= t('call_routes.show.table') + ":"
- = @call_route.routing_table
-%p
- %strong= t('call_routes.show.name') + ":"
- = @call_route.name
-%p
- %strong= t('call_routes.show.endpoint') + ":"
- - endpoint = @call_route.endpoint
- - if endpoint
- = endpoint
- - else
- = @call_route.endpoint_type
+.row
+ .span5
+ %table.table.table-striped
+ %tr
+ %td
+ %strong= t('call_routes.show.table') + ":"
+ %td
+ = @call_route.routing_table
+ %tr
+ %td
+ %strong= t('call_routes.show.name') + ":"
+ %td
+ = @call_route.name
+ %tr
+ %td
+ %strong= t('call_routes.show.endpoint') + ":"
+ %td
+ - if @call_route.endpoint.blank?
+ = @call_route.endpoint_type
+ - else
+ = @call_route.endpoint
= render :partial => 'shared/show_edit_destroy_part', :locals => { :child => @call_route }
-%h3= t('route_elements.index.page_title')
-- if @call_route.route_elements && @call_route.route_elements.count > 0
- = render "route_elements/index_core", :route_elements => @call_route.route_elements
+.row
+ .span12
+ %h3= t('route_elements.index.page_title')
+ - if @call_route.route_elements && @call_route.route_elements.count > 0
+ = render "route_elements/index_core", :route_elements => @call_route.route_elements
-= render :partial => 'shared/create_link', :locals => { :parent => @call_route, :child_class => RouteElement }
+ = render :partial => 'shared/create_link', :locals => { :parent => @call_route, :child_class => RouteElement }
diff --git a/config/locales/views/call_routes/de.yml b/config/locales/views/call_routes/de.yml
index 77b597b..c9df1c2 100644
--- a/config/locales/views/call_routes/de.yml
+++ b/config/locales/views/call_routes/de.yml
@@ -1,25 +1,25 @@
de:
call_routes:
- name: 'Call Route'
+ name: 'Call-Route'
controller:
- successfuly_created: 'Call Route wurde angelegt.'
- successfuly_updated: 'Call Route wurde aktualisiert.'
- successfuly_destroyed: 'Call Route wurde gelöscht.'
+ successfuly_created: 'Call-Route wurde angelegt.'
+ successfuly_updated: 'Call-Route wurde aktualisiert.'
+ successfuly_destroyed: 'Call-Route wurde gelöscht.'
index:
- page_title: 'Liste aller Call Routen'
- routing_table: 'Routing Table'
+ page_title: 'Liste Call-Routen'
+ routing_table: 'Routing Tabelle'
name: 'Name'
- endpoint: 'Endpoint'
+ endpoint: 'Endpunkt'
position: 'Position'
actions:
- confirm_destroy: 'Sind Sie sicher, dass Sie folgendes löschen möchten: Call Route'
+ confirm_destroy: 'Sind Sie sicher, dass Sie folgendes löschen möchten: Call-Route'
destroy: 'Löschen'
edit: 'Bearbeiten'
show: 'Anzeigen'
create: 'Neu anlegen'
- create_for: 'Call Route neu anlegen für %{resource}'
+ create_for: 'Call-Route neu anlegen für %{resource}'
show:
- page_title: 'Call Route bearbeiten'
+ page_title: 'Call-Route bearbeiten'
routing_table: 'Routing Table'
name: 'Name'
endpoint: 'Endpoint'
@@ -30,11 +30,11 @@ de:
edit: 'Bearbeiten'
view_all: 'Alle anzeigen'
new:
- page_title: 'Call Route neu anlegen'
+ page_title: 'Call-Route neu anlegen'
actions:
back_to_list: 'Zurück zur Übersicht'
edit:
- page_title: 'Call Route bearbeiten'
+ page_title: 'Call-Route bearbeiten'
actions:
back_to_list: 'Zurück zur Übersicht'
edit: 'Bearbeiten'
diff --git a/config/locales/views/phones/de.yml b/config/locales/views/phones/de.yml
index 373db13..02875c4 100644
--- a/config/locales/views/phones/de.yml
+++ b/config/locales/views/phones/de.yml
@@ -9,9 +9,9 @@ de:
page_title: 'Telefone'
mac_address: 'MAC-Adresse'
phone_model_id: 'Modell'
- hot_deskable: 'Hot-Desk fähig'
- ip_address: 'IP-Adresse'
- last_ip_address: 'Letzte IP-Adresse'
+ hot_deskable: 'Hot-Desk'
+ ip_address: 'IP'
+ last_ip_address: 'Letzte IP'
http_user: 'Phone WebGUI Username'
http_password: 'Phone WebGUI Passwort'
nightly_reboot: 'Nachts automatischer Reboot'
diff --git a/config/locales/views/route_elements/de.yml b/config/locales/views/route_elements/de.yml
index fe14671..70a6162 100644
--- a/config/locales/views/route_elements/de.yml
+++ b/config/locales/views/route_elements/de.yml
@@ -1,12 +1,12 @@
de:
route_elements:
- name: 'Route element'
+ name: 'Routen-Element'
controller:
- successfuly_created: 'Route element wurde angelegt.'
- successfuly_updated: 'Route element wurde aktualisiert.'
- successfuly_destroyed: 'Route element wurde gelöscht.'
+ successfuly_created: 'Routen-Element wurde angelegt.'
+ successfuly_updated: 'Routen-Element wurde aktualisiert.'
+ successfuly_destroyed: 'Routen-Element wurde gelöscht.'
index:
- page_title: 'Übersicht von Route element'
+ page_title: 'Liste Routen-Elemente'
call_route_id: 'Call route'
var_in: 'Var in'
var_out: 'Var out'
@@ -16,14 +16,14 @@ de:
mandatory: 'Mandatory'
position: 'Position'
actions:
- confirm_destroy: 'Sind Sie sicher, dass Sie folgendes löschen möchten: Route element'
+ confirm_destroy: 'Sind Sie sicher, dass Sie folgendes löschen möchten: Routen-Element'
destroy: 'Löschen'
edit: 'Bearbeiten'
show: 'Anzeigen'
create: 'Neu anlegen'
- create_for: 'Route element neu anlegen für %{resource}'
+ create_for: 'Routen-Element neu anlegen für %{resource}'
show:
- page_title: 'Route element bearbeiten'
+ page_title: 'Routen-Element bearbeiten'
call_route_id: 'Call route'
var_in: 'Var in'
var_out: 'Var out'
@@ -38,11 +38,11 @@ de:
edit: 'Bearbeiten'
view_all: 'Alle anzeigen'
new:
- page_title: 'Route element neu anlegen'
+ page_title: 'Routen-Element neu anlegen'
actions:
back_to_list: 'Zurück zur Übersicht'
edit:
- page_title: 'Route element bearbeiten'
+ page_title: 'Routen-Element bearbeiten'
actions:
back_to_list: 'Zurück zur Übersicht'
edit: 'Bearbeiten'
diff --git a/config/locales/views/sip_accounts/de.yml b/config/locales/views/sip_accounts/de.yml
index 2820336..8fe2300 100644
--- a/config/locales/views/sip_accounts/de.yml
+++ b/config/locales/views/sip_accounts/de.yml
@@ -11,11 +11,11 @@ de:
caller_name: 'Caller Name'
password: 'Passwort'
voicemail_pin: 'Anrufbeantworter PIN'
- phone_numbers: 'Telefonnummern'
+ phone_numbers: 'Tel.Nr.'
call_waiting: 'Anklopfen'
clir: 'Rufnummernunterdrückung (CLIR)'
clip: 'Rufnummernanzeige (CLIP)'
- hotdeskable: 'Hot-Desk fähig'
+ hotdeskable: 'Hot-Desk'
clip_no_screening: 'Spezifische Rufnummernanzeige (CLIP -no screening-)'
callforward_rules_act_per_sip_account: 'Rufweiterleitungen gelten für das gesamte SIP-Account'
online: 'Online'