diff options
author | Georg Ehrke <georg.stefan.germany@googlemail.com> | 2011-08-20 15:19:43 +0200 |
---|---|---|
committer | Georg Ehrke <georg.stefan.germany@googlemail.com> | 2011-08-20 15:19:43 +0200 |
commit | 8e32cfbf1587198e755ce7e1a887f269169c05da (patch) | |
tree | d95273074bf634225705c31965320c85f4c78737 /apps/calendar/appinfo | |
parent | b3f6eb22249408e927c8c83e66d60d2aba52ccaf (diff) | |
download | nextcloud-server-8e32cfbf1587198e755ce7e1a887f269169c05da.tar.gz nextcloud-server-8e32cfbf1587198e755ce7e1a887f269169c05da.zip |
bug/style fixes, multiple language support, german language pack
Diffstat (limited to 'apps/calendar/appinfo')
-rw-r--r-- | apps/calendar/appinfo/app.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/calendar/appinfo/app.php b/apps/calendar/appinfo/app.php index 8cf92baf30a..e989266d401 100644 --- a/apps/calendar/appinfo/app.php +++ b/apps/calendar/appinfo/app.php @@ -1,5 +1,5 @@ <?php - +$l=new OC_L10N('calendar'); OC::$CLASSPATH['OC_Calendat_Calendar'] = 'apps/calendar/lib/calendar.php'; OC::$CLASSPATH['OC_Calendar_Hooks'] = 'apps/calendar/lib/hooks.php'; OC::$CLASSPATH['OC_Connector_Sabre_CalDAV'] = 'apps/calendar/lib/connector_sabre.php'; @@ -15,4 +15,4 @@ OC_App::addNavigationEntry( array( 'order' => 10, 'href' => OC_Helper::linkTo( 'calendar', 'index.php' ), 'icon' => OC_Helper::imagePath( 'calendar', 'icon.png' ), - 'name' => 'Calendar' )); + 'name' => $l->t('Calendar'))); |